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