/**
  * Handle remove student command.
  *
  * @param $studentId
  * @return string bool
  */
 public function removeStudent($studentId)
 {
     $studentModel = new StudentModel();
     return json_encode($studentModel->removeStudent($studentId));
 }