Example #1
0
 public ExamSesssionController(DateTime date, String session)
 {
     examSesion = new ExamSesssion(date, session);
     //
     // TODO: Add constructor logic here
     //
 }
Example #2
0
 public ExamSesssionController()
 {
     examSesion = new ExamSesssion();
     //
     // TODO: Add constructor logic here
     //
 }
Example #3
0
 public String[,] checkHoliday(String startDate, String endDate)
 {
     examSesion = new ExamSesssion();
     return(examSesion.checkHoliday(startDate, endDate));
 }