Exemplo n.º 1
0
 public ChannelsRefresher(
     ILogger <ChannelsRefresher> logger,
     TwitchBotOrchestratorGrpcClient twitchBotClient)
 {
     this.logger          = logger;
     this.twitchBotClient = twitchBotClient;
 }
Exemplo n.º 2
0
 public NewChannelHandler(
     ITwitchApiService twitchApiService,
     ITelegramBotClient telegramBotClient,
     IUserRepository userRepository,
     TwitchBotOrchestratorGrpcClient twitchBotOrchestratorClient)
 {
     this.twitchApiService            = twitchApiService;
     this.telegramBotClient           = telegramBotClient;
     this.userRepository              = userRepository;
     this.twitchBotOrchestratorClient = twitchBotOrchestratorClient;
 }