public static void ResetCache(ITriggerService triggerService, IApplicationState applicationState) { triggerService.UpdateCronObjects(); EventServiceFactory.EventService.PublishEvent(EventTopicNames.ResetCache, true); applicationState.CurrentDepartment.PublishEvent(EventTopicNames.SelectedDepartmentChanged); applicationState.CurrentTicketType.PublishEvent(EventTopicNames.TicketTypeChanged); }
public PDFService(IHostsService hostService, ITriggerService triggerService, IUserRepository userRepository, IEventService eventService) { _hostService = hostService; _triggerService = triggerService; _userRepository = userRepository; _eventService = eventService; }
public UpdatePriceTag(IDepartmentService departmentService, IMethodQueue methodQueue, ITriggerService triggerService, IApplicationState applicationState) { _departmentService = departmentService; _methodQueue = methodQueue; _triggerService = triggerService; _applicationState = applicationState; }
public ImageProcessor(ILogger <ImageProcessor> logger, IDeepStackService deepStackService, ITelegramService telegramService, ITriggerService triggerService) { _logger = logger; _deepStackService = deepStackService; _telegramService = telegramService; _triggerService = triggerService; }
public TriggerSession(ITriggerService triggerService, TriggerOptions options, ITriggerDiscoveryService triggerDiscoveryService, TriggerContextTracker tracker, ILogger <TriggerSession> logger) { _triggerService = triggerService ?? throw new ArgumentNullException(nameof(triggerService)); _options = options ?? throw new ArgumentNullException(nameof(options)); _triggerDiscoveryService = triggerDiscoveryService ?? throw new ArgumentNullException(nameof(triggerDiscoveryService)); _tracker = tracker ?? throw new ArgumentNullException(nameof(tracker)); _logger = logger ?? throw new ArgumentNullException(nameof(logger)); }
public HomeController(IProjectService projectService, INodeGroupService nodeGroupService, INodeService nodeService, IChannelService channelService, ITriggerService triggerService) { this.projectService = projectService; this.nodeGroupService = nodeGroupService; this.nodeService = nodeService; this.channelService = channelService; this.triggerService = triggerService; }
public EditorViewModel( IPluginConfigAccessor scrollConfig, IPluginConfigAccessor keyboardTriggerConfig, ITriggerService triggerService ) { _scrollConfig = scrollConfig; _keyboardTriggerConfig = keyboardTriggerConfig; _triggerService = triggerService; _currentIndexStrategy = StrategyBridge.AvailableStrategies.IndexOf( _scrollConfig.User.GetOrSet( "Strategy", "ZoneScrollingStrategy" ) ); this.DisplayName = R.ScrollEditor; }
public ZWaveWebhookController(DefaultContext context, IJsonDatabaseService jsonDatabaseService, IZWaveAPIService zwaveAPIService, ITriggerService triggerService, IHubContext <LogHub> hubContext, IConfiguration configuration, ILogger <ZWaveWebhookController> logger) { this.logger = logger; this.context = context; this.jsonDatabaseService = jsonDatabaseService; this.zwaveAPIService = zwaveAPIService; this.triggerService = triggerService; this.hubContext = hubContext; this.configuration = configuration; }
public TriggerController( IMapper mapper, mydbContext context, ITriggerService triggerService, IUserService userService, IOptions <AppSettings> appSettings) { _context = context; _mapper = mapper; _userService = userService; _triggerService = triggerService; _appSettings = appSettings.Value; }
public UsersController( IUserService userService, ITriggerService triggerService, IAccessService accessService, IMailService mailService, IMapper mapper, mydbContext context, IOptions <AppSettings> appSettings) { _context = context; _userService = userService; _triggerService = triggerService; _accessService = accessService; _mailService = mailService; _mapper = mapper; _appSettings = appSettings.Value; }
public HostsService(IUserRepository userRepository, ITriggerService triggerService) { _userRepository = userRepository; _triggerService = triggerService; }
public RefreshCache(IMethodQueue methodQueue, ITriggerService triggerService, IApplicationState applicationState) { _methodQueue = methodQueue; _triggerService = triggerService; _applicationState = applicationState; }
public TriggersController(ITriggerService service) { _service = service; }
public TriggerViewModel(ITriggerService triggerService, IMethodQueue methodQueue) { _triggerService = triggerService; _methodQueue = methodQueue; TestExpressionCommand = new CaptionCommand <string>("Test", OnTestExpression); }
public TriggerScheduledJob(IJsonDatabaseService jsonDatabaseService, ISunDataService sunDataService, ITriggerService triggerService) { this.jsonDatabaseService = jsonDatabaseService; this.sunDataService = sunDataService; this.triggerService = triggerService; }
public TriggerController(ITriggerService triggerService, IMappingEngine mappingEngine) { _triggerService = triggerService; _mappingEngine = mappingEngine; }
public TriggersController(ITriggerService triggerService) { _triggerService = triggerService; }
public TriggerListViewModel(ITriggerService triggerService, IMethodQueue methodQueue) { _triggerService = triggerService; _methodQueue = methodQueue; }
public ExecuteTrigger(IHookFunction hookFunction, ITriggerService indexService) { _indexService = indexService; _hookFunction = hookFunction; _hookFunction.TriggerSaveEvent += IndexData; }
public TriggerListViewModel(ITriggerService triggerService) { _triggerService = triggerService; }
public TriggerViewModel(ITriggerService triggerService) { _triggerService = triggerService; TestExpressionCommand = new CaptionCommand <string>("Test", OnTestExpression); }