Пример #1
0
 public CartItem(ProductModels productItem)
 {
     ProductItem = productItem;
 }
Пример #2
0
        /**
         * RemoveItem() - Removes an item from the shopping cart
         */
        public void RemoveItem(ProductModels productItem)
        {
            CartItem removedItem = new CartItem(productItem);

            Items.Remove(removedItem);
        }