Example #1
0
 public OrderLine(ProductCatalog product, double quantity)
 {
     this._product          = product;
     this._quantity         = quantity;
     this._taxSpecification = new TaxSpecification(this);
 }
Example #2
0
 public OrderLine(ProductCatalog product, double quantity)
 {
     this._product = product;
     this._quantity = quantity;
     this._taxSpecification = new TaxSpecification(this);
 }