Esempio n. 1
0
 public void Add(Product product, int quantity)
 {
     var item = new BasketItem(this, product, quantity);
     Items.Add(item);
 }
Esempio n. 2
0
        public void Add(Product product, int quantity)
        {
            var item = new BasketItem(this, product, quantity);

            Items.Add(item);
        }