public void GetDataGridTermTranslationList(string path, [CallerMemberName] string caller = "") { string callerMethodName = caller; TermTranslationList = ReadFromFileService.ReturnTermTranslationList(path, callerMethodName); NotifyPropertyChanged(); }
// /Methods for non-test mode // Methods for Category Tab public void GetTermTranslationList(string path, [CallerMemberName] string caller = "") { string callerMethodName = caller; TermTranslationList = ReadFromFileService.ReturnTermTranslationList(path, callerMethodName); GetTermList(); GetTranslationList(); if (IsTestOn) { IsTestOpenFirstly = true; openWindowService.CreateTestWindow(); } NotifyPropertyChanged(); }