public TwitchCallOutCommandHandler(TwitchClientServices twitchClientServices, TwitchAPI twitchApiClient, ICacheService cacheService, IOptions <TwitchConfig> config)
 {
     _twitchClientServices = twitchClientServices;
     _twitchApiClient      = twitchApiClient;
     _cacheService         = cacheService;
     _config = config.Value;
 }
 public DadJokeCommandHandler(TwitchClientServices twitchClient, IMapper mapper, INotifierMediatorService notifierMediatorService, TwitchAPI twitchApiClient, IHubContext <TwitchHub> twitchHub, DadJokeService service, IOptions <TwitchConfig> config)
 {
     _twitchClient            = twitchClient.Client;
     _mapper                  = mapper;
     _notifierMediatorService = notifierMediatorService;
     _twitchApiClient         = twitchApiClient;
     _service                 = service;
     _config                  = config.Value;
 }
 public TwitchStatsCommandHandler(TwitchAPI twitchApiClient, IOptions <TwitchConfig> config, TwitchClientServices twitchClientServices)
 {
     _twitchApiClient      = twitchApiClient;
     _twitchClientServices = twitchClientServices;
     _config = config.Value;
 }
 public TwitchYeetCommandHandler(TwitchClientServices twitchClient, IOptions <TwitchConfig> config)
 {
     _config       = config.Value;
     _twitchClient = twitchClient.Client;
 }
 public TwitchClientHealthCheck(TwitchClientServices service)
 {
     _service = service;
 }
 public TwitchUnknownChatCommandHandler(IOptions <TwitchConfig> config, TwitchClientServices twitchClientServices)
 {
     _twitchClientServices = twitchClientServices;
     _config = config.Value;
 }
Esempio n. 7
0
 public TwitchGrowCommandHandler(OBSServices obs, TwitchClientServices api)
 {
     _obs = obs;
     _api = api;
 }
 public TwitchLedFXCommandHandler(WLEDService wledService, TwitchClientServices twitchClientServices, IOptions <TwitchConfig> config)
 {
     _wledService          = wledService;
     _twitchClientServices = twitchClientServices;
     _config = config.Value;
 }