Ejemplo n.º 1
0
 public InterfaceCleanupJob(
     ISchedulerCustomerCollection schedulerCustomers,
     IExternalInterfaceNotificationService externalNotificationService)
 {
     _schedulerCustomers          = schedulerCustomers;
     _externalNotificationService = externalNotificationService;
 }
Ejemplo n.º 2
0
 public SystemCleanupJob(
     ISchedulerCustomerCollection schedulerCustomers,
     IExternalSystemNotificationService externalNotificationService)
 {
     _schedulerCustomers          = schedulerCustomers;
     _externalNotificationService = externalNotificationService;
 }
Ejemplo n.º 3
0
 public UsersSynchronizationJob(
     ISchedulerCustomerCollection schedulerCustomers,
     IUserSynchronizationService synchronizationService)
 {
     _schedulerCustomers     = schedulerCustomers;
     _synchronizationService = synchronizationService;
 }
Ejemplo n.º 4
0
 public EnableUsersJob(
     ISchedulerCustomerCollection schedulerCustomers,
     ICommonUserService commonUserService
     )
 {
     _schedulerCustomers = schedulerCustomers;
     _commonUserService  = commonUserService;
 }
Ejemplo n.º 5
0
 public InterfaceNotificationJob(
     ISchedulerCustomerCollection schedulerCustomers,
     IExternalInterfaceNotificationService externalNotificationService,
     IInterfaceNotificationProvider notificationProvider)
 {
     _schedulerCustomers          = schedulerCustomers;
     _externalNotificationService = externalNotificationService;
     _notificationProvider        = notificationProvider;
 }
Ejemplo n.º 6
0
 public UsersProcessor(
     ILog logger,
     PrtgErrorsHandler prtgLogger,
     ISchedulerCustomerCollection schedulerCustomers,
     Func <IUserSynchronizationService> getSynchronizationService)
 {
     _logger                    = logger;
     _prtgLogger                = prtgLogger;
     _schedulerCustomers        = schedulerCustomers;
     _getSynchronizationService = getSynchronizationService;
 }
Ejemplo n.º 7
0
 public SystemCleanupProcessor(
     ILog logger,
     PrtgErrorsHandler prtgLogger,
     ISchedulerCustomerCollection schedulerCustomers,
     IExternalSystemNotificationService externalNotificationService)
 {
     _logger                      = logger;
     _prtgLogger                  = prtgLogger;
     _schedulerCustomers          = schedulerCustomers;
     _externalNotificationService = externalNotificationService;
 }
Ejemplo n.º 8
0
 public InterfaceNotificationProcessor(
     ILog logger,
     PrtgErrorsHandler prtgLogger,
     ISchedulerCustomerCollection schedulerCustomers,
     IExternalInterfaceNotificationService externalNotificationService,
     IInterfaceNotificationProvider notificationProvider)
 {
     _logger                      = logger;
     _prtgLogger                  = prtgLogger;
     _schedulerCustomers          = schedulerCustomers;
     _externalNotificationService = externalNotificationService;
     _notificationProvider        = notificationProvider;
 }