Example #1
0
 public AmazonTextToSpeechProcessor(IConfigurationManager configurationManager, ISoundPathProvider soundPathProvider)
 {
     this.configurationManager = configurationManager;
     this.soundPathProvider    = soundPathProvider;
 }
Example #2
0
 public SoundProcessor(IConfigurationManager configurationManager, ISoundPathProvider soundPathProvider, ILogger logger)
 {
     this.configurationManager = configurationManager;
     this.soundPathProvider    = soundPathProvider;
     this.logger = logger.ForContext <SoundProcessor>();
 }
 public AzureTextToSpeechProcessor(ISoundPathProvider soundPathProvider, IConfigurationManager configurationManager, ILogger logger)
 {
     this.soundPathProvider    = soundPathProvider;
     this.configurationManager = configurationManager;
     this.logger = logger.ForContext <AzureTextToSpeechProcessor>();
 }