示例#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();
 }
示例#2
0
 public DataResourceController()
 {
     this.dataIOService = new DataIOService();
     this.attendeeService = new AttendeeService();
 }
示例#3
0
 public AttendeeController()
 {
     this.service = new AttendeeService();
 }
示例#4
0
 public SupportTeamController()
 {
     this.service = new SupportTeamService();
     this.meetingService = new SchedulerMeetingService();
     this.attendeeService = new AttendeeService();
 }
示例#5
0
文件: PDFService.cs 项目: nhuang/fvs
 public PDFService()
 {
     attendeeService = new AttendeeService();
     roomService = new RoomService();
     schedulerMeetingService = new SchedulerMeetingService();
 }