/**
  * <h2>DELETE teacher/subjectround/:id</h2>
  * <h3>URL Parameters</h3>
  * <code>id(integer)*</code>
  * 
  * @param int $id
  * @return JsonModel
  */
 public function delete($id)
 {
     return parent::notAllowed();
 }
 /**
  * <h2>DELETE student/studentgrade/:id</h2>
  * <h3>URL Parameters</h3>
  * <code>id(integer)*</code>
  * 
  * @param int $id
  * @return JsonModel
  */
 public function delete($id)
 {
     return parent::delete($id);
 }