Esempio n. 1
0
 public SchedulerController()
 {
     this.taskService = new SchedulerTaskService();
     this.meetingService = new SchedulerMeetingService();
     this.attendeeService = new AttendeeService();
     this.roomService = new RoomService();
     this.eventService = new SysEventService();
     this.settingService = new SysSettingService();
 }
Esempio n. 2
0
 public SchedulerController()
 {
     this.taskService = new SchedulerTaskService();
     this.meetingService = new SchedulerMeetingService();
 }
Esempio n. 3
0
 public HomeController()
 {
     taskService = new SchedulerTaskService();
 }
 public SchedulerController()
 {
     this.taskService    = new SchedulerTaskService();
     this.meetingService = new SchedulerMeetingService();
 }
 public TaskController()
 {
     service = new SchedulerTaskService(new SampleEntitiesDataContext());
 }
 public SchedulerController(EventsDbContecst context)
 {
     this.taskService = new SchedulerTaskService(context);
 }
Esempio n. 7
0
 public LichHopController()
 {
     this.taskService = new SchedulerTaskService();
 }
 public SchedulerSqlServerBindingController(GeneralDbContext context)
 {
     this.taskService = new SchedulerTaskService(context);
 }