public string Conjugate(Root verbRoot, bool negative, bool question) { var copy = new Word(verb) {Root = verbRoot}; if (negative) { copy.AddSuffixAfterRoot(Negative); } if (question) { } return copy.GetSurface(); }