Exemple #1
0
 public IndefiniteNoun(Noun noun)
 {
     Noun = noun;
 }
Exemple #2
0
 public IndefiniteNoun(string noun, NounClass nounClass = NounClass.It)
 {
     Noun = new Noun(noun, nounClass);
 }
Exemple #3
0
        public static string Conjugate(this IVerb verb, IExpression subject, Tense tense)
        {
            var nounExpression = new Noun(subject.ToString());

            return(verb.Conjugate(nounExpression, tense));
        }