Esempio n. 1
0
 public ReportsController(IProgramService programService, IServerTimeEntryService serverTimeEntryService, IPaySourceService paySourceService, IExportingService exportingService, IServerSalaryReportService serverSalaryReportService)
 {
     _programService            = programService;
     _serverTimeEntryService    = serverTimeEntryService;
     _paySourceService          = paySourceService;
     _exportingService          = exportingService;
     _serverSalaryReportService = serverSalaryReportService;
 }
Esempio n. 2
0
 public ProgramsController(IProgramService programService, IPaySourceService paySourceService)
 {
     this._programService   = programService;
     this._paySourceService = paySourceService;
 }
Esempio n. 3
0
 public PaysourceApiController(IPaySourceService paySourceService)
 {
     _paySourceService = paySourceService;
 }
Esempio n. 4
0
 public ServerTimeEntriesController(IServerTimeEntryService serverTimeEntryService, IServerService serverService, IPaySourceService paySourceService)
 {
     _serverTimeEntryService = serverTimeEntryService;
     _serverService          = serverService;
     _paySourceService       = paySourceService;
 }