Ejemplo n.º 1
0
 public WeekPlanController(
     IWeekPlanService weeklyPlanService,
     IDayAssignService dayAssignService)
 {
     this.weeklyPlanService = weeklyPlanService;
     this.dayAssignService  = dayAssignService;
 }
Ejemplo n.º 2
0
 public JobController(IMessageBus messageBus,
                      ITaskIdGenerator taskIdGenerator,
                      IDayAssignProvider dayAssignProvider,
                      IJobService jobService,
                      IJobAssignProvider jobAssignProvider,
                      IMemberService memberService,
                      IDayAssignService dayAssignService,
                      IJobStatusService jobStatusService,
                      IJobStatusLogService jobStatusLogService,
                      IWeekPlanService weekPlanService,
                      IGuideCommentService guideCommentService)
 {
     this.messageBus          = messageBus;
     this.taskIdGenerator     = taskIdGenerator;
     this.dayAssignProvider   = dayAssignProvider;
     this.jobService          = jobService;
     this.jobAssignProvider   = jobAssignProvider;
     this.memberService       = memberService;
     this.dayAssignService    = dayAssignService;
     this.jobStatusService    = jobStatusService;
     this.jobStatusLogService = jobStatusLogService;
     this.weekPlanService     = weekPlanService;
     this.guideCommentService = guideCommentService;
     this.janitorHubs         = GlobalHost.ConnectionManager.GetHubContext <JanitorHub>();
     this.managementHubs      = GlobalHost.ConnectionManager.GetHubContext <ManagementHub>();
 }
Ejemplo n.º 3
0
 public SyncController(
     IMemberService memberService,
     IManagementDepartmentService managementService,
     IJobService jobService,
     IWeekPlanService weeklyPlanService)
 {
     this.memberService     = memberService;
     this.managementService = managementService;
     this.jobService        = jobService;
     this.weeklyPlanService = weeklyPlanService;
 }
Ejemplo n.º 4
0
 public ClientForManagerController(IMonthlyCallService monthlyCallService,
                                   IManagerService managerService,
                                   IMonthlyCallPlanService monthlyCallPlanService,
                                   IAccountInformationService accountInformationService,
                                   IMonthlyBusinessTripService monthlyBusinessTripService,
                                   IWeekPlanService weekPlanService)
 {
     _monthlyCallService         = monthlyCallService;
     _managerService             = managerService;
     _monthlyCallPlanService     = monthlyCallPlanService;
     _accountInformationService  = accountInformationService;
     _monthlyBusinessTripService = monthlyBusinessTripService;
     _weekPlanService            = weekPlanService;
 }
Ejemplo n.º 5
0
 public WeekPlanController(IWeekPlanService weekPlanService,
                           IAccountInformationService accountInformationService)
 {
     _weekPlanService           = weekPlanService;
     _accountInformationService = accountInformationService;
 }