Beispiel #1
0
 public YoutubeService(UserService userService, ILogger <YoutubeService> logger,
                       ConfigurationService configurationService, IntegrationService integrationService)
 {
     this.userService          = userService;
     this.logger               = logger;
     this.configurationService = configurationService;
     IntegrationService        = integrationService;
 }
Beispiel #2
0
 public TwitchService(UserService userService, ILogger <TwitchService> logger, ChatService chatService,
                      ConfigurationService configurationService, IntegrationService integrationService)
 {
     this.userService          = userService;
     this.logger               = logger;
     this.chatService          = chatService;
     this.configurationService = configurationService;
     this.integrationService   = integrationService;
 }
Beispiel #3
0
 public TwitchService(UserService userService, ILogger <TwitchService> logger, ChatProcessor chatService,
                      ConfigurationService configurationService, IntegrationService integrationService, TwitchManager twitchManager)
 {
     this.userService          = userService;
     this.logger               = logger;
     this.chatService          = chatService;
     this.configurationService = configurationService;
     this.integrationService   = integrationService;
     this.twitchManager        = twitchManager;
 }
Beispiel #4
0
 public YoutubeService(UserService userService, ILogger <YoutubeService> logger,
                       ConfigurationService configurationService, IntegrationService integrationService, ChatMessageService chatMessageService, AuthorService authorService)
 {
     this.userService          = userService;
     this.logger               = logger;
     this.configurationService = configurationService;
     this.integrationService   = integrationService;
     this.chatMessageService   = chatMessageService;
     this.authorService        = authorService;
 }
Beispiel #5
0
 public DashboardService(IHubContext <DashboardHub> dashboardHub, IntegrationService integrationService, ILogger <DashboardService> logger)
 {
     this.dashboardHub       = dashboardHub;
     this.integrationService = integrationService;
     this.logger             = logger;
 }