示例#1
0
 public Product(IProductTax productTax)
 {
     this._productTax = productTax;
 }
示例#2
0
 public ProductModifiersBuilder WithTax(IProductTax tax)
 {
     ProductPriceModifiers.Add(tax);
     return(this);
 }