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