public ApplicationStartupService(HttpServerLifeTimeService httpServer, ILogger <ApplicationStartupService> logger, IHookService hookService, Settings settings) { _hookService = hookService; _httpServer = httpServer; _settings = settings; _logger = logger; }
public ConfigureSummonersView( ISummonerSpellFactory summonerSpellFactory, ITimeableElementConfigurator configurator, IHookService hookService) { _summonerSpellFactory = summonerSpellFactory; _configurator = configurator; _hookService = hookService; InitializeComponent(); }
public JungleCampTimerView( IJungleCampFactory jungleCampFactory, ITimeableElementConfigurator configurator, IHookService hookService) { InitializeComponent(); DataContext = this; OwnJungleCamps = jungleCampFactory.CreateAll(JungleCampPosition.Own); EnemyJungleCamps = jungleCampFactory.CreateAll(JungleCampPosition.Enemy); _allCamps = OwnJungleCamps.Concat(EnemyJungleCamps).ToList(); Topmost = true; configurator.Initialize(_allCamps); hookService.Hook(); }
public HooksController(IHookService hookService) =>
public NativeMouseHookService(IHookService hookService) { _hookService = hookService; }
public HookController(IHookService hookService) { _hookService = hookService; }
public HookController(IHookService hookService) { this._hookService = hookService; }
public HookServiceTester() { this.service = new HookService(); }
public static void SetupDependencies(IServiceProvider services) => HookService = services.GetRequiredService <IHookService>();
public NativeKeyboardHookService(IHookService hookService) { _hookService = hookService; }
public HookController(IssuesDBContext db, IHookService hookService) { this.db = db; this.hookService = hookService; //this.manager = manager; }