public TextToSpeechService(
     ITextToSpeechRepository textToSpeechRepository,
     ILogWrapper logger)
 {
     TextToSpeechRepository = textToSpeechRepository;
     Logger = logger;
 }
Example #2
0
 public MainViewModel(ISettingsService settingsService, ITextToSpeechRepository textToSpeechRepository, IUnityContainer container)
 {
     this.container              = container;
     this.settingsService        = settingsService;
     settings                    = settingsService.settings;
     this.textToSpeechRepository = textToSpeechRepository;
     DeleteCmd                   = new DeleteCommand(this);
     createFolders();
 }