Ejemplo n.º 1
0
 public static decimal GetBasePrice(tbl_ProductPrice table)
 {
     return table.PR_OnSale ? table.PR_SalePrice.GetValueOrDefault(0) :
         table.tbl_Products.tbl_ProductTypes.PT_Name == ProductType.Event.ToString() ?
              table.GetCurrentPriceForEvent() : table.PR_Price;
 }