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