public ApplicationStartupService(HttpServerLifeTimeService httpServer,
                                  ILogger <ApplicationStartupService> logger,
                                  IHookService hookService,
                                  Settings settings)
 {
     _hookService = hookService;
     _httpServer  = httpServer;
     _settings    = settings;
     _logger      = logger;
 }
Beispiel #2
0
 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) =>
Beispiel #5
0
 public NativeMouseHookService(IHookService hookService)
 {
     _hookService = hookService;
 }
Beispiel #6
0
 public HookController(IHookService hookService)
 {
     _hookService = hookService;
 }
 public HookController(IHookService hookService)
 {
     this._hookService = hookService;            
 }
Beispiel #8
0
 public HookServiceTester()
 {
     this.service = new HookService();
 }
Beispiel #9
0
 public static void SetupDependencies(IServiceProvider services) =>
 HookService = services.GetRequiredService <IHookService>();
Beispiel #10
0
 public NativeKeyboardHookService(IHookService hookService)
 {
     _hookService = hookService;
 }
Beispiel #11
0
 public HookController(IssuesDBContext db, IHookService hookService)
 {
     this.db          = db;
     this.hookService = hookService;
     //this.manager = manager;
 }