Esempio n. 1
0
 public static List <StudentRegistered> GetRegisteredStudents()
 {
     return(StudentRegistration_DS.GetRegisteredStudents());
 }
Esempio n. 2
0
 public static bool UpdateStudentRegistration(StudentRegistrationInfo student)
 {
     return(StudentRegistration_DS.UpdateStudentRegistration(student));
 }
Esempio n. 3
0
 public static StudentRegistrationInfo GetStudentRegistrationInfo(int RegisteredStudentID)
 {
     return(StudentRegistration_DS.GetStudentRegistrationInfo(RegisteredStudentID));
 }
Esempio n. 4
0
 public static bool RegisterStudent(StudentRegistrationInfo student)
 {
     return(StudentRegistration_DS.RegisterStudent(student));
 }