예제 #1
0
 public void add(Product product)
 {
 }
예제 #2
0
 public CartItem(Product product, int quantity)
 {
     this.product = product;
     this.quantity = quantity;
 }
예제 #3
0
 public void add_item_to_shopping_cart(Product product)
 {
     // Do nothing
 }