public HealthPlanHomeVisitRequestedCustomerExportPollingAgent(ILogManager logManager, ISettings settings, IHealthPlanCustomerExportService healthPlanCustomerExportService)
        {
            _healthPlanCustomerExportService = healthPlanCustomerExportService;
            _logger = logManager.GetLogger("HealthPlanHomeVisitRequestedCustomerExport");

            _homeVisitRequestExportDownloadPath = settings.HealthPlanHomeVisitRequestExportDownloadPath;

            _dayOfWeek = settings.HealthPlanCustomerExportIntervalDay;
        }
 public AnthemHomeVisitRequestedCustomerExportPollingAgent(ILogManager logManager, ISettings settings, IHealthPlanCustomerExportService healthPlanCustomerExportService, ICorporateTagRepository corporateTagRepository,
                                                           IUniqueItemRepository <CorporateAccount> corporateAccountReporsitory)
 {
     _settings = settings;
     _healthPlanCustomerExportService = healthPlanCustomerExportService;
     _corporateTagRepository          = corporateTagRepository;
     _corporateAccountReporsitory     = corporateAccountReporsitory;
     _logger    = logManager.GetLogger("AntheHomeVisitRequestedExort");
     _dayOfWeek = settings.HealthPlanCustomerExportIntervalDay;
 }
 public HealthPlanIncorrectPhoneExportPollingAgent(ILogManager logManager, ISettings settings, IHealthPlanCustomerExportService healthPlanCustomerExportService)
 {
     _healthPlanCustomerExportService = healthPlanCustomerExportService;
     _logger = logManager.GetLogger("HealthPlanIncorrectPhoneExportPollingAgent");
     _incorrectPhoneNumberCsvDownloadPath = settings.HealthPlanIncorrectPhoneExportDownloadPath;
 }