Exemplo n.º 1
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;
 }
 public EventCustomerFindingRepository(IUniqueItemRepository <Event> eventRepository, IEventTestRepository testRepository, IEventCustomerRepository eventCustomerRepository,
                                       ICustomerReceiptModelService service, IEventCustomerFindingFactory eventCustomerFindingFactory, ICustomerRepository customerRepository, IPodRepository podRepository)
 {
     _eventRepository         = eventRepository;
     _testRepository          = testRepository;
     _eventCustomerRepository = eventCustomerRepository;
     _service = service;
     _eventCustomerFindingFactory = eventCustomerFindingFactory;
     _customerRepository          = customerRepository;
     _podRepository = podRepository;
 }