public GenerateJournalVoucherReportUseCase(
     IExportingService exportingService,
     AuditorMasterProcessor[] sheetProcessors)
 {
     _exportingService = exportingService;
     _sheetProcessors  = sheetProcessors;
 }
Esempio n. 2
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. 3
0
 public ReportsController(
     IFundService fundService,
     IExportingService exportingService,
     IGenerateJournalVoucherReportUseCase journalVoucherReportUseCase,
     IJournalVoucherRuleService journalVoucherRuleService,
     IMonthlyImportExceptionRuleService monthlyImportExceptionRuleService)
 {
     _fundService                       = fundService;
     _exportingService                  = exportingService;
     _journalVoucherReportUseCase       = journalVoucherReportUseCase;
     _journalVoucherRuleService         = journalVoucherRuleService;
     _monthlyImportExceptionRuleService = monthlyImportExceptionRuleService;
 }
Esempio n. 4
0
 public ServerAvailableHoursController(IServerAvailableHourService serverAvailableHourService, IExportingService exportingService, IServerService serverService)
 {
     _serverAvailableHourService = serverAvailableHourService;
     _exportingService           = exportingService;
     _serverService = serverService;
 }
Esempio n. 5
0
 public BarsController(IBarService barService, IExportingService exportingService)
 {
     _barService       = barService;
     _exportingService = exportingService;
 }
Esempio n. 6
0
 public AccountPayableController(IAccountPayableRepository accountPayableRepository, IExportingService exportingService)
 {
     _accountPayableRepository = accountPayableRepository;
     _exportingService         = exportingService;
 }
 public BuildingPermitSystemController(IBuildingPermitSystemRepository buildingModuleRepository, IExportingService exportingService)
 {
     _buildingModuleRepository = buildingModuleRepository;
     _exportingService         = exportingService;
 }
Esempio n. 8
0
 public FundsController(IFundService fundService, IExportingService exportingService, IGPDynamicsService gpDynamicsService)
 {
     _fundService       = fundService;
     _exportingService  = exportingService;
     _gpDynamicsService = gpDynamicsService;
 }