public Word(int row, string word, string morfology, MorfologyDetail morfologyDetail) { this.row = row; this.word = word; this.morfology = morfology; this.morfologyDetail = morfologyDetail; }
public ExamWord(string checkingWord, List <Word> words, string numberClass, string morfology, MorfologyDetail morfologyDetail, string examinedWordsmeaning, string nextToExaminedWord) { this.checkingWord = checkingWord; this.words = words; this.numberClass = numberClass; this.morfology = morfology; this.morfologyDetail = morfologyDetail; this.examinedWordsmeaning = examinedWordsmeaning; this.nextToExaminedWord = nextToExaminedWord; }
public AttributeMorfology(string word, string morfology, MorfologyDetail morfologyDetail) { this.word = word; this.morfology = morfology; this.morfologyDetail = morfologyDetail; }