Exemple #1
0
 public ExcelExportingService(IServerTimeEntryService serverTimeEntryService, IServerAvailableHourService serverAvailableHourService, IServerService serverService, IServerSalaryReportService serverSalaiesService)
 {
     _serverTimeEntryService     = serverTimeEntryService;
     _serverAvailableHourService = serverAvailableHourService;
     _serverService         = serverService;
     _serverSalariesService = serverSalaiesService;
 }
Exemple #2
0
 public ServerMonthlyReportService(IServerSalaryReportRepository serverMonthlyReportRepoitory, IServerTimeEntryService serverTimeEntry, IServerRepository serverRepository, IUnitOfWork unitOfWork)
 {
     _serverMonthlyReportRepository = serverMonthlyReportRepoitory;
     _serverTimeEntry  = serverTimeEntry;
     _serverRepository = serverRepository;
     _unitOfWork       = unitOfWork;
 }
Exemple #3
0
 public ReportsController(IProgramService programService, IServerTimeEntryService serverTimeEntryService, IPaySourceService paySourceService, IExportingService exportingService, IServerSalaryReportService serverSalaryReportService)
 {
     _programService            = programService;
     _serverTimeEntryService    = serverTimeEntryService;
     _paySourceService          = paySourceService;
     _exportingService          = exportingService;
     _serverSalaryReportService = serverSalaryReportService;
 }
Exemple #4
0
 public ServerTimeEntriesController(IServerTimeEntryService serverTimeEntryService, IServerService serverService, IPaySourceService paySourceService)
 {
     _serverTimeEntryService = serverTimeEntryService;
     _serverService          = serverService;
     _paySourceService       = paySourceService;
 }