public InterfaceCleanupJob( ISchedulerCustomerCollection schedulerCustomers, IExternalInterfaceNotificationService externalNotificationService) { _schedulerCustomers = schedulerCustomers; _externalNotificationService = externalNotificationService; }
public SystemCleanupJob( ISchedulerCustomerCollection schedulerCustomers, IExternalSystemNotificationService externalNotificationService) { _schedulerCustomers = schedulerCustomers; _externalNotificationService = externalNotificationService; }
public UsersSynchronizationJob( ISchedulerCustomerCollection schedulerCustomers, IUserSynchronizationService synchronizationService) { _schedulerCustomers = schedulerCustomers; _synchronizationService = synchronizationService; }
public EnableUsersJob( ISchedulerCustomerCollection schedulerCustomers, ICommonUserService commonUserService ) { _schedulerCustomers = schedulerCustomers; _commonUserService = commonUserService; }
public InterfaceNotificationJob( ISchedulerCustomerCollection schedulerCustomers, IExternalInterfaceNotificationService externalNotificationService, IInterfaceNotificationProvider notificationProvider) { _schedulerCustomers = schedulerCustomers; _externalNotificationService = externalNotificationService; _notificationProvider = notificationProvider; }
public UsersProcessor( ILog logger, PrtgErrorsHandler prtgLogger, ISchedulerCustomerCollection schedulerCustomers, Func <IUserSynchronizationService> getSynchronizationService) { _logger = logger; _prtgLogger = prtgLogger; _schedulerCustomers = schedulerCustomers; _getSynchronizationService = getSynchronizationService; }
public SystemCleanupProcessor( ILog logger, PrtgErrorsHandler prtgLogger, ISchedulerCustomerCollection schedulerCustomers, IExternalSystemNotificationService externalNotificationService) { _logger = logger; _prtgLogger = prtgLogger; _schedulerCustomers = schedulerCustomers; _externalNotificationService = externalNotificationService; }
public InterfaceNotificationProcessor( ILog logger, PrtgErrorsHandler prtgLogger, ISchedulerCustomerCollection schedulerCustomers, IExternalInterfaceNotificationService externalNotificationService, IInterfaceNotificationProvider notificationProvider) { _logger = logger; _prtgLogger = prtgLogger; _schedulerCustomers = schedulerCustomers; _externalNotificationService = externalNotificationService; _notificationProvider = notificationProvider; }