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