public int UpdateStudent(Student theStudent)
 {
     return(StudentIntegration.UpdateStudent(theStudent));
 }
 public int UpdateStudent(Student theStudent, List <StudentSubjectTaken> StudentSubjects)
 {
     return(StudentIntegration.UpdateStudent(theStudent, StudentSubjects));
 }