public void unEnrollStudent(Course course, Student student) {
   courseVerifier.verifyUnenrollStudent(course, student);
   courseDao.unenrollStudent(course.getId(), student.getId());
 }