示例#1
0
 public MainViewModel(ITersmoService tersmoService, IPolicyService policyService, IWordService wordService)
 {
     tersmoService.LoadDictionary();
     _policyService = policyService;
     _wordService   = wordService;
     Task.Run(() => ReadInfo());
 }
示例#2
0
 public PolicyService(ITersmoService tersmoService)
 {
     _tersmoService = tersmoService;
 }