Esempio n. 1
0
 /// <summary>
 /// Updates the quantity of the specified prodct
 /// </summary>
 /// <param name="productId">The id of the product whose quantity is to be modified</param>
 /// <param name="quantity">The quantity</param>
 public void UpdateProductQuantity(int productId, int quantity)
 {
     CurrentCart.UpdateProductQuantity(productId, quantity);
 }