public MorphoSyntacticFeatures(String num, String pers, String tma, TensePositivity posit, TensePassivity voice)
 {
     Number = this.StringToNumber(num);
     Person = this.StringToPerson(pers);
     TenseMoodAspect = this.StringToTMA(tma);
     Positivity = posit;
     Voice = voice;
 }
 public MorphoSyntacticFeatures(String num, String pers, String tma, TensePositivity posit, TensePassivity voice)
 {
     Number          = this.StringToNumber(num);
     Person          = this.StringToPerson(pers);
     TenseMoodAspect = this.StringToTMA(tma);
     Positivity      = posit;
     Voice           = voice;
 }
 public MorphoSyntacticFeatures(NumberType num, PersonType pers, TenseFormationType tma, TensePositivity posit, TensePassivity voice)
 {
     Number = num;
     Person = pers;
     TenseMoodAspect = tma;
     Positivity = posit;
     Voice = voice;
 }
 public MorphoSyntacticFeatures(NumberType num, PersonType pers, TenseFormationType tma, TensePositivity posit, TensePassivity voice)
 {
     Number          = num;
     Person          = pers;
     TenseMoodAspect = tma;
     Positivity      = posit;
     Voice           = voice;
 }
 public VerbInflection(Verb vrb, AttachedPronounType zamir, string zamirPeyvastehString, PersonType shakhstype, TenseFormationType tenseFormationType, TensePositivity positivity, TensePassivity passivity)
 {
     VerbRoot              = vrb;
     ZamirPeyvasteh        = zamir;
     AttachedPronounString = zamirPeyvastehString;
     Person     = shakhstype;
     TenseForm  = tenseFormationType;
     Positivity = positivity;
     Passivity  = passivity;
 }
Exemple #6
0
 public VerbInflection(Verb vrb, ZamirPeyvastehType zamir, string zamirPeyvastehString, ShakhsType shakhstype, TenseFormationType tenseFormationType, TensePositivity positivity, TensePassivity passivity)
 {
     VerbStem             = vrb;
     ZamirPeyvasteh       = zamir;
     ZamirPeyvastehString = zamirPeyvastehString;
     Shakhs     = shakhstype;
     TenseForm  = tenseFormationType;
     Positivity = positivity;
     Passivity  = passivity;
 }
 public VerbInflection(Verb vrb, ZamirPeyvastehType zamir, string zamirPeyvastehString, ShakhsType shakhstype, TenseFormationType tenseFormationType, TensePositivity positivity, TensePassivity passivity)
 {
     VerbStem = vrb;
     ZamirPeyvasteh = zamir;
     ZamirPeyvastehString = zamirPeyvastehString;
     Shakhs = shakhstype;
     TenseForm = tenseFormationType;
     Positivity = positivity;
     Passivity = passivity;
 }
 public VerbInflection(Verb vrb, AttachedPronounType zamir,string zamirPeyvastehString, PersonType shakhstype,TenseFormationType tenseFormationType,TensePositivity positivity, TensePassivity passivity)
 {
     VerbRoot = vrb;
     ZamirPeyvasteh = zamir;
     AttachedPronounString = zamirPeyvastehString;
     Person = shakhstype;
     TenseForm = tenseFormationType;
     Positivity = positivity;
     Passivity = passivity;
 }