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;
 }
Esempio n. 2
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;
 }
Esempio n. 3
0
 private bool isEqualShaksZamir(ZamirPeyvastehType zamirPeyvastehType, ShakhsType shakhsType)
 {
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_MOFRAD && shakhsType == ShakhsType.DOVVOMSHAKHS_MOFRAD)
     {
         return(true);
     }
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_JAM && shakhsType == ShakhsType.DOVVOMSHAKHS_JAM)
     {
         return(true);
     }
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_MOFRAD && shakhsType == ShakhsType.AVALSHAKHS_MOFRAD)
     {
         return(true);
     }
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_JAM && shakhsType == ShakhsType.AVALSHAKHS_JAM)
     {
         return(true);
     }
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_JAM && shakhsType == ShakhsType.DOVVOMSHAKHS_MOFRAD)
     {
         return(true);
     }
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_MOFRAD && shakhsType == ShakhsType.DOVVOMSHAKHS_JAM)
     {
         return(true);
     }
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_JAM && shakhsType == ShakhsType.AVALSHAKHS_MOFRAD)
     {
         return(true);
     }
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_MOFRAD && shakhsType == ShakhsType.AVALSHAKHS_JAM)
     {
         return(true);
     }
     return(false);
 }
 private bool isEqualShaksZamir(ZamirPeyvastehType zamirPeyvastehType, ShakhsType shakhsType)
 {
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_MOFRAD && shakhsType == ShakhsType.DOVVOMSHAKHS_MOFRAD)
         return true;
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_JAM && shakhsType == ShakhsType.DOVVOMSHAKHS_JAM)
         return true;
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_MOFRAD && shakhsType == ShakhsType.AVALSHAKHS_MOFRAD)
         return true;
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_JAM && shakhsType == ShakhsType.AVALSHAKHS_JAM)
         return true;
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_JAM && shakhsType == ShakhsType.DOVVOMSHAKHS_MOFRAD)
         return true;
     if (zamirPeyvastehType == ZamirPeyvastehType.DOVVOMSHAKHS_MOFRAD && shakhsType == ShakhsType.DOVVOMSHAKHS_JAM)
         return true;
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_JAM && shakhsType == ShakhsType.AVALSHAKHS_MOFRAD)
         return true;
     if (zamirPeyvastehType == ZamirPeyvastehType.AVALSHAKHS_MOFRAD && shakhsType == ShakhsType.AVALSHAKHS_JAM)
         return true;
     return false;
 }