Example #1
0
 public FinanceExportableReportHelper(IMediaRepository mediaRepository, IBaseReportService baseReportService, ILogManager logManager,
                                      IFinanceReportingService financeReportingService)
     : base(mediaRepository, baseReportService, logManager)
 {
     _financeReportingService = financeReportingService;
     _baseReportService       = baseReportService;
 }
 public SchedulingExportableReportHelper(IEventCustomerReportingService eventCustomerReportingService,
                                         IMediaRepository mediaRepository, IBaseReportService baseReportService, ILogManager logManager,
                                         ICustomerScheduleCsvHelper customerScheduleCsvHelper,
                                         IPcpTrackingReportService pcpTrackingReportService)
     : base(mediaRepository, baseReportService, logManager)
 {
     _eventCustomerReportingService = eventCustomerReportingService;
     _baseReportService             = baseReportService;
     _customerScheduleCsvHelper     = customerScheduleCsvHelper;
     _pcpTrackingReportService      = pcpTrackingReportService;
 }
 public HourlyOutreachCallReportPollingAgent(ISettings settings, ILogManager logManager,
                                             IHourlyOutreachReportingService hourlyOutreachReportingService,
                                             IBaseReportService baseReportService, INotifier notifier, IEmailNotificationModelsFactory emailNotificationModelsFactory)
 {
     _settings = settings;
     _hourlyOutreachReportingService = hourlyOutreachReportingService;
     _baseReportService = baseReportService;
     _notifier          = notifier;
     _emailNotificationModelsFactory = emailNotificationModelsFactory;
     _logger = logManager.GetLogger("HourlyOutreachCallReportPollingAgent");
 }
 public WellmedMemberStatusReportPollingAgent(IEventCustomerReportingService eventCustomerReportingService, IUniqueItemRepository <CorporateAccount> corporateAccountRepository,
                                              ILogManager logManager, ISettings settings, IBaseReportService baseReportService)
 {
     _eventCustomerReportingService = eventCustomerReportingService;
     _corporateAccountRepository    = corporateAccountRepository;
     _baseReportService             = baseReportService;
     _logger    = logManager.GetLogger("Wellmed Member Status Report");
     _accountId = settings.WellmedAccountId;
     _wellmedMemberStatusDestinationPath = settings.WellmedMemberStatusReportPath;
     _dayOfMonth = settings.WellmedMemberStatusReportDayOfMonth;
     _settings   = settings;
 }
Example #5
0
 public MedicalExportableReportHelper(IMediaRepository mediaRepository, IBaseReportService baseReportService, ILogManager logManager, ITestResultService testResultService, ITestNotPerformedService testNotPerformedService,
                                      IEventCustomerReportingService eventCustomersReportingService, IEventArchiveStatsService eventArchiveStatsService, ITestPerformedCsvExportHelper testPerformedCsvExportHelper, IEventCustomerQuestionAnswerService eventCustomerQuestionAnswerServcie)
     : base(mediaRepository, baseReportService, logManager)
 {
     _testResultService                  = testResultService;
     _testNotPerformedService            = testNotPerformedService;
     _eventCustomersReportingService     = eventCustomersReportingService;
     _eventArchiveStatsService           = eventArchiveStatsService;
     _baseReportService                  = baseReportService;
     _testPerformedCsvExportHelper       = testPerformedCsvExportHelper;
     _eventCustomerQuestionAnswerServcie = eventCustomerQuestionAnswerServcie;
 }
        public HousecallOutreachCallReportPollingAgent(ICorporateAccountRepository corporateAccountRepository, ILogManager logManager, ISettings settings,
                                                       ICustomSettingManager customSettingManager, ICallQueueService callQueueService, IBaseReportService baseReportService)
        {
            _corporateAccountRepository = corporateAccountRepository;
            _customSettingManager       = customSettingManager;
            _callQueueService           = callQueueService;
            _baseReportService          = baseReportService;
            _logger = logManager.GetLogger("HousecallOutreachReport");

            _housecallOutreachReportExportDownloadPath = settings.HousecallOutreachReportExportDownloadPath;
            _cutOfDate        = settings.HousecallOutreachReportCutOfDate;
            _healthPlanIds    = settings.HousecallPlanOutreachReportAccountIds;
            _outreachSettings = settings.HousecallOutreachSettings;
        }
Example #7
0
 public CallCenterExportableReportHelper(IMediaRepository mediaRepository, IBaseReportService baseReportService, ILogManager logManager, ICallQueueService callQueueService, ICallCenterReportService callCenterReportService,
                                         ICallQueueCustomerReportService callQueueCustomerReportService, IBaseExportableReportHelper baseExportableReportHelper, IConfirmationReportingService confirmationReportingService,
                                         ICallSkippedReportService callSkippedReportService, IGmsExcludedCustomerService excludedCustomerService, IPreAssessmentReportingService preAssessmentReportingService)
     : base(mediaRepository, baseReportService, logManager)
 {
     _baseReportService              = baseReportService;
     _callQueueService               = callQueueService;
     _callCenterReportService        = callCenterReportService;
     _callQueueCustomerReportService = callQueueCustomerReportService;
     _baseExportableReportHelper     = baseExportableReportHelper;
     _confirmationReportingService   = confirmationReportingService;
     _callSkippedReportService       = callSkippedReportService;
     _excludedCustomerService        = excludedCustomerService;
     _preAssessmentReportingService  = preAssessmentReportingService;
 }
Example #8
0
 public BaseExportableReportHelper(IMediaRepository mediaRepository, IBaseReportService baseReportService, ILogManager logManager)
 {
     _baseReportService      = baseReportService;
     ExportableMediaLocation = mediaRepository.GetExportToCsvMediaFileLocation();
     Logger = logManager.GetLogger("Exportable Report Polling Agent");
 }
Example #9
0
 public TestPerformedCsvExportHelper(IBaseReportService baseReportService)
 {
     _baseReportService = baseReportService;
 }