示例#1
0
 public CheckNotificationQueueJob(PrtgErrorsHandler prtgLogger, IDbService dbService, IExternalSystemNotificationService systemNotificationService)
 {
     _prtgLogger = prtgLogger;
     _dbService  = dbService;
     _systemNotificationService = systemNotificationService;
     _cts = new CancellationTokenSource();
 }
示例#2
0
 public SystemCleanupJob(
     ISchedulerCustomerCollection schedulerCustomers,
     IExternalSystemNotificationService externalNotificationService)
 {
     _schedulerCustomers          = schedulerCustomers;
     _externalNotificationService = externalNotificationService;
 }
示例#3
0
 public CdcDataImportJob(PrtgErrorsHandler prtgLogger, ICdcImportService cdcImportService, ICdcDataImportProcessor cdcImportProcessor, IExternalSystemNotificationService systemNotificationService)
 {
     _prtgLogger                = prtgLogger;
     _cts                       = new CancellationTokenSource();
     _cdcImportService          = cdcImportService;
     _cdcImportProcessor        = cdcImportProcessor;
     _systemNotificationService = systemNotificationService;
 }
示例#4
0
 public CdcDataImportJob(
     ICdcImportService cdcImportService,
     IExternalSystemNotificationService systemNotificationService
     )
 {
     _cdcImportService          = cdcImportService;
     _systemNotificationService = systemNotificationService;
 }
示例#5
0
 public SystemCleanupProcessor(
     ILog logger,
     PrtgErrorsHandler prtgLogger,
     ISchedulerCustomerCollection schedulerCustomers,
     IExternalSystemNotificationService externalNotificationService)
 {
     _logger                      = logger;
     _prtgLogger                  = prtgLogger;
     _schedulerCustomers          = schedulerCustomers;
     _externalNotificationService = externalNotificationService;
 }
示例#6
0
 public CdcDataImportJob(ICdcImportService cdcImportService, IExternalSystemNotificationService systemNotificationService)
 {
     _cts = new CancellationTokenSource();
     _cdcImportService          = cdcImportService;
     _systemNotificationService = systemNotificationService;
 }
示例#7
0
 public CheckNotificationQueueJob(IDbService dbService, IExternalSystemNotificationService systemNotificationService)
 {
     _dbService = dbService;
     _systemNotificationService = systemNotificationService;
 }