Example #1
0
 public VendingService()
 {
     this.cashStore        = new CashStore(new CashStoreLoader());
     this.productCatalogue = new ProductCatalogue(new ProductCatalogueLoader());
 }
 public OrderLineFactory(IProductCatalogue productCatalogue)
 {
     _productCatalogue = productCatalogue;
 }