/**
  * <h2>PUT student/studentgrade/:id</h2>
  * <h3>URL Parameters</h3>
  * <code>id(integer)*</code>
  * <h3>Body</h3>
  * <code>notes(string)
  * student(integer)*
  * gradeChoice(integer)*
  * independentWork(integer)
  * module(integer)
  * subjectRound(integer)
  * contactLesson(integer)</code>
  * @param int $id
  * @return JsonModel
  */
 public function update($id, $data)
 {
     return parent::update($id, $data);
 }