Esempio n. 1
0
 /// <summary>
 /// Removes the specified product from the current cart
 /// </summary>
 /// <param name="productId">The id of the product to be removed from the current cart</param>
 public void RemoveProductFromCart(int productId)
 {
     CurrentCart.RemoveProduct(productId);
 }