Exemplo n.º 1
0
 public void SetType(string type)
 {
     Type = type switch
     {
         "mw" => DictionaryVersion.MerriamWebster,
         "wa" => DictionaryVersion.WordApi,
         _ => DictionaryVersion.Test,
     };
 }
Exemplo n.º 2
0
 public UserFacade Create(DictionaryVersion type)
 {
     return(_facades[type]);
 }