public TTSController(
     IAudioEffectSystem audioEffectSystem,
     Notifications.ITTSHandler ttsHandler)
 {
     this.audioEffectSystem = audioEffectSystem;
     this.ttsHandler        = ttsHandler;
 }
Example #2
0
 public TTSSystem(
     Config.BotConfiguration botConfig,
     ICommunication communication,
     IAudioEffectSystem audioEffectSystem,
     Notifications.ITTSHandler ttsHandler,
     IServiceScopeFactory scopeFactory)
 {
     this.botConfig         = botConfig;
     this.communication     = communication;
     this.audioEffectSystem = audioEffectSystem;
     this.ttsHandler        = ttsHandler;
     this.scopeFactory      = scopeFactory;
 }