Beispiel #1
0
 public FinanceExportableReportHelper(IMediaRepository mediaRepository, IBaseReportService baseReportService, ILogManager logManager,
                                      IFinanceReportingService financeReportingService)
     : base(mediaRepository, baseReportService, logManager)
 {
     _financeReportingService = financeReportingService;
     _baseReportService       = baseReportService;
 }
Beispiel #2
0
 public ReportsController(IEventReportingService eventReportingService, IFinanceReportingService financeReportingService, ICustomerReceiptModelService customerReceiptModelService, ISettings settings,
                          IDailyPatientRecapReportingService dailyPatientRecapReporting, ICallCenterBounsReportingService callCenterBounsReportingService)
 {
     _eventReportingService           = eventReportingService;
     _financeReportingService         = financeReportingService;
     _customerReceiptModelService     = customerReceiptModelService;
     _dailyPatientRecapReporting      = dailyPatientRecapReporting;
     _callCenterBounsReportingService = callCenterBounsReportingService;
     _pageSize = settings.DefaultPageSizeForReports;
 }