Esempio n. 1
0
 public bool ModifyStudent(Student EnrolledStudent)
 {
     return(_studentManager.UpdateStudent(EnrolledStudent));
 }
Esempio n. 2
0
 public bool EnrollStudent(Student AcceptedStudent)
 {
     return(_studentManager.AddStudent(AcceptedStudent));
 }