public TrainingPageViewModel(ITextToSpeech textToSpeech, VocabularySqliteConnection vocabularySqliteConnection)
     : base()
 {
     _vocabularySqliteConnection = vocabularySqliteConnection;
     _textToSpeech = textToSpeech;
 }
示例#2
0
 public CreateVocabularyPageViewModel(VocabularySqliteConnection vocabularySqliteConnection)
 {
     this._vocabularySqliteConnection = vocabularySqliteConnection as VocabularySqliteConnection;
     Language1 = CultureInfo.CurrentCulture;
     Language2 = CultureInfo.GetCultureInfo("en-GB");
 }