예제 #1
0
 public SwedishDictionaryWordDTO(SwedishDictionaryWord word)
     : base(word, SwedishDictionary.SwedishLanguageCode, word.Inflections.Select(x => new SwedishWordInflectionDTO(x)))
 {
     Synonyms      = word.Synonyms;
     Pronunciation = word.Pronunciation;
     Definition    = word.Definition;
     ExampleUse    = word.ExampleUse;
     Composition   = word.Composition;
     WordClass     = word.WordClass;
     Department    = word.Department;
 }
 private async Task ParseAndSave(SwedishDictionaryWord word)
 {
     _testFactory.TestLogger().Information("Found word {word} in test class", word.Word);
 }