Exemplo n.º 1
0
 public Mobcrush(IMobcrushManager mobcrushManager, MessagingService messagingService, IOptions <BotSettings> botSettings, FileService fileService)
     : base(botSettings)
 {
     _mobcrushManager  = mobcrushManager;
     _messagingService = messagingService;
     _botSettings      = botSettings.Value;
     _fileService      = fileService;
 }
Exemplo n.º 2
0
 public Streamer(IYouTubeManager youTubeManager, IMixerManager mixerManager, ITwitchManager twitchManager,
                 IVidMeManager vidMeManager, IOptions <BotSettings> botSettings, FileService fileService, IMobcrushManager mobCrushManager)
 {
     _youtubeManager  = youTubeManager;
     _vidMeManager    = vidMeManager;
     _twitchManager   = twitchManager;
     _mixerManager    = mixerManager;
     _botSettings     = botSettings.Value;
     _fileService     = fileService;
     _mobCrushManager = mobCrushManager;
 }