Exemplo n.º 1
0
 public CalendarController(ILeaveService leaveService,
                           IOSHTrainingService oshTrainingService,
                           IMedicalReportService medicalReportService,
                           ICustomEventService customEventService,
                           IUserCompanyService companyService)
 {
     _leaveService         = leaveService;
     _medicalReportService = medicalReportService;
     _oshTrainingService   = oshTrainingService;
     _customEventService   = customEventService;
     _companyService       = companyService;
 }
Exemplo n.º 2
0
 public EmailController(IEmailMessageService emailMessageService,
                        IOSHTrainingService oshTrainingMessageService,
                        IMedicalReportService medicalReportService,
                        ILeaveService leaveService,
                        ICustomEventService customEventService)
 {
     _emailMessageService  = emailMessageService;
     _oshTrainingService   = oshTrainingMessageService;
     _medicalReportService = medicalReportService;
     _leaveService         = leaveService;
     _customEventService   = customEventService;
 }