public ProductActionService(ProductService _Service)
 {
     this.Service = _Service;
 }
Example #2
0
 public Checkout(IEnumerable <PriceRule> pricingRules)
 {
     _pricingRules   = pricingRules;
     _productService = new ProductService();
     _items          = new List <CheckoutItem>();
 }