Example #1
0
 public CdcDataImportJob(PrtgErrorsHandler prtgLogger, ICdcImportService cdcImportService, ICdcDataImportProcessor cdcImportProcessor, IExternalSystemNotificationService systemNotificationService)
 {
     _prtgLogger                = prtgLogger;
     _cts                       = new CancellationTokenSource();
     _cdcImportService          = cdcImportService;
     _cdcImportProcessor        = cdcImportProcessor;
     _systemNotificationService = systemNotificationService;
 }
Example #2
0
 public CdcDataImportJob(
     ICdcImportService cdcImportService,
     IExternalSystemNotificationService systemNotificationService
     )
 {
     _cdcImportService          = cdcImportService;
     _systemNotificationService = systemNotificationService;
 }
Example #3
0
 public CdcDataImportProcessor(ICdcImportService cdcImportService)
 {
     _cdcImportService = cdcImportService;
 }
Example #4
0
 public CdcDataImportJob(ICdcImportService cdcImportService, IExternalSystemNotificationService systemNotificationService)
 {
     _cts = new CancellationTokenSource();
     _cdcImportService          = cdcImportService;
     _systemNotificationService = systemNotificationService;
 }