コード例 #1
0
ファイル: ShoppingCart.cs プロジェクト: hwchw/BookStore
 public decimal GetPrice(IDiscountHelper discountHelper)
 {
     discountHelper.SetProduct(_products);
     return(discountHelper.GetPrice());;
 }