Example #1
0
 public ScheduleController(IScheduleServices sServices, IHallServices hServices)
 {
     scheduleService = sServices;
     hallServices    = hServices;
 }
Example #2
0
 public ScheduleController(IScheduleServices scheduleServices)
 {
     _scheduleServices = scheduleServices;
 }
 public ScheduleController(IScheduleServices ScheduleService)
 {
     _ScheduleServices = ScheduleService;
 }
 public ScheduleController()
 {
     _kronox           = new kronox();
     _staffServices    = new StaffServices();
     _scheduleServices = new ScheduleServices();
 }
 public StaffController()
 {
     _scheduleServices = new ScheduleServices();
     _staffServices    = new StaffServices();
 }