public CoffeeController(ICoffeeContext coffeeContext) { _coffeeContext = coffeeContext; }
public StockController(ICoffeeContext CoffeeContext) { this.CoffeeContext = CoffeeContext; }
public CoffeeOrderController(ICoffeeContext CoffeeContext) { this.CoffeeContext = CoffeeContext; }
public IngredientController(ICoffeeContext CoffeeContext) { this.CoffeeContext = CoffeeContext; }
public OrdersManager(ICoffeeContext context) { _coffeMachineContext = context; }
public OrdersManager() { _coffeMachineContext = new CoffeeMachineDataContext(); }