private bool StudentExists(int id)
 {
     return(_studentRepository.Any(e => e.StudentId == id));
 }