Esempio n. 1
0
 public static string GetTaxValueString(this tbl_ProductPrice table)
 {
     return(String.Format(percentageFormat, PriceManager.GetTaxPercentage(table)));
 }
Esempio n. 2
0
 public static decimal GetTaxValue(this tbl_OrderContent table)
 {
     return(PriceManager.GetTaxPercentage(table.tbl_ProductPrice));
 }