Exemplo n.º 1
0
 /**
  * @param product item/product name
  * @param price item/product price
  * @param specialPriceQuantity Quantity at special price applicable - if zero, then not applicable
  * @param specialPrice Special price overrides the per unit price
  */
 @Override
 public void addPriceRule(String product, int price, int specialPriceQuantity, int specialPrice) {
   priceRuleDao.addProductPrice(product, price, specialPriceQuantity, specialPrice);
 }