コード例 #1
0
ファイル: Neighbor.cs プロジェクト: JiYouMCC/CivitasTool
 public void CheckTax(TaxStandard standard)
 {
     if (this.ready)
     {
         foreach (Estate es in this.Estates)
         {
             es.CheckTax(standard.GetStandard(es.Type));
         }
     }
 }
コード例 #2
0
ファイル: Neighbor.cs プロジェクト: mengcanzhai/CivitasTool
 public void CheckTax(TaxStandard standard)
 {
     if (this.ready)
     {
         foreach (Estate es in this.Estates)
         {
             es.CheckTax(standard.GetStandard(es.Type));
         }
     }
 }
コード例 #3
0
        public static TaxStandard LoadStandard(string path)
        {
            TaxStandard tax = new TaxStandard();

            return(tax);
        }
コード例 #4
0
ファイル: TaxStandard.cs プロジェクト: JiYouMCC/CivitasTool
 public static TaxStandard LoadStandard(string path)
 {
     TaxStandard tax = new TaxStandard();
     return tax;
 }