public InventoryService(IInventoryStore inventoryStore, ICartStore cartStore) { _inventoryStore = inventoryStore; _cartStore = cartStore; }
public PurchaseOrderRepository(IInventoryStore inventoryStore, IOptions <StockRuleSetConfiguration> stockConfig) { _stockConfig = stockConfig?.Value; _inventoryStore = inventoryStore; }
public ShoppingCartService(ICartStore cartStore, IInventoryStore inventoryStore) { _cartStore = cartStore; _inventoryStore = inventoryStore; }