Esempio n. 1
0
 public BasketItem(GoodsItem goodsItem, IDiscount discount)
 {
     this._goodsItem = goodsItem;
     this._discount  = discount;
 }
Esempio n. 2
0
 public BasketItem(GoodsItem goodsItem)
 {
     this._goodsItem = goodsItem;
     this._discount  = new NoDiscount();
 }