Exemplo n.º 1
0
 public static Common.PriceRange LoadPriceRange(Guid priceRangeGuid)
 {
     Business.PriceRange priceRangeController = new Business.PriceRange();
     Common.PriceRange   priceRange           = new Common.PriceRange();
     priceRangeController.Load(priceRangeGuid, priceRange);
     return(priceRange);
 }
Exemplo n.º 2
0
 public static bool Insert(Common.PriceRange priceRange)
 {
     Business.PriceRange priceRangeController = new Business.PriceRange();
     return(priceRangeController.Insert(priceRange) != Guid.Empty ? true : false);
 }
Exemplo n.º 3
0
 public static bool UpdatePriceRange(Common.PriceRange priceRange)
 {
     Business.PriceRange priceRangeController = new Business.PriceRange();
     return(priceRangeController.UpdatePriceRange(priceRange));
 }