コード例 #1
0
ファイル: StudentRegistered.cs プロジェクト: Cyrekxs/CES
 public static List <StudentRegistered> GetRegisteredStudents()
 {
     return(StudentRegistration_DS.GetRegisteredStudents());
 }
コード例 #2
0
 public static bool UpdateStudentRegistration(StudentRegistrationInfo student)
 {
     return(StudentRegistration_DS.UpdateStudentRegistration(student));
 }
コード例 #3
0
 public static StudentRegistrationInfo GetStudentRegistrationInfo(int RegisteredStudentID)
 {
     return(StudentRegistration_DS.GetStudentRegistrationInfo(RegisteredStudentID));
 }
コード例 #4
0
 public static bool RegisterStudent(StudentRegistrationInfo student)
 {
     return(StudentRegistration_DS.RegisterStudent(student));
 }