public SpeechTranslationController(IAzureSpeechTranslatorService azureSpeechTranslatorService,
                                    IAzureTextTranslationService azureTextTranslatorSevice,
                                    IBingSpeechService bingSpeechService,
                                    IWatsonTextTranslationService watsonTranslationService,
                                    IWatsonSpeechToTextService watsonSpeechToTextService)
 {
     _azureSpeechTranslatorService = azureSpeechTranslatorService;
     _azureTextTranslatorService   = azureTextTranslatorSevice;
     _bingSpeechService            = bingSpeechService;
     _watsonTextTranslationService = watsonTranslationService;
     _watsonSpeechToTextService    = watsonSpeechToTextService;
 }
 public SpeechToTextController(IBingSpeechService bingSpeechService, IWatsonSpeechToTextService watsonSpeechToTextService, IAwsService awsService)
 {
     _bingSpeechService         = bingSpeechService;
     _watsonSpeechToTextService = watsonSpeechToTextService;
     _awsService = awsService;
 }