Example #1
0
 public void CheckTax(TaxStandard standard)
 {
     if (this.ready)
     {
         foreach (Estate es in this.Estates)
         {
             es.CheckTax(standard.GetStandard(es.Type));
         }
     }
 }
Example #2
0
 public void CheckTax(TaxStandard standard)
 {
     if (this.ready)
     {
         foreach (Estate es in this.Estates)
         {
             es.CheckTax(standard.GetStandard(es.Type));
         }
     }
 }
Example #3
0
        public static TaxStandard LoadStandard(string path)
        {
            TaxStandard tax = new TaxStandard();

            return(tax);
        }
Example #4
0
 public static TaxStandard LoadStandard(string path)
 {
     TaxStandard tax = new TaxStandard();
     return tax;
 }