示例#1
0
        public void AddProduct(int productNumber, DataTable table)
        {
            ProductPriceModel model = ProductHandling.DefaultPriceProduct();

            product.AddPriceProduct(model);
            RetrievePriceProductsToTable(table);
        }
示例#2
0
 public void InitPriceProducts()
 {
     foreach (var n in productsNumber)
     {
         product.AddPriceProduct(ProductHandling.DefaultPriceProduct());
     }
 }