Example #1
0
 private void SetTaxRate()
 {
     BCO.VAM15_BCO bco = new BCO.VAM15_BCO(ConntionDB);
     DataTable dt = bco.GetTaxRate();
     hidTaxRate.Value = "0";
     if (dt.Rows.Count > 0)
         hidTaxRate.Value = dt.Rows[0]["TAXRATE"].ToString();
 }