Esempio n. 1
0
        public void GetDataGridTermTranslationList(string path, [CallerMemberName] string caller = "")
        {
            string callerMethodName = caller;

            TermTranslationList = ReadFromFileService.ReturnTermTranslationList(path, callerMethodName);
            NotifyPropertyChanged();
        }
Esempio n. 2
0
        // /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();
        }