Exemplo n.º 1
0
        public void AddProduct(int productNumber, DataTable table)
        {
            ProductPriceModel model = ProductHandling.DefaultPriceProduct();

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