コード例 #1
0
 public List<Lecture> GetLecturesForStaff(string staffNumber)
 {
     LectureHandler myHandler = new LectureHandler(); return myHandler.GetLectureForStaffMemeber(staffNumber);
 }
コード例 #2
0
 public bool InsertLecture(Lecture _lecture)
 {
     LectureHandler myHandler = new LectureHandler(); return myHandler.NewLecture(_lecture);
 }
コード例 #3
0
 public Lecture GetLecture(int LUI)
 {
     LectureHandler myHandler = new LectureHandler(); return myHandler.GetLecture(LUI);
 }