Beispiel #1
0
 public CoffeeController(ICoffeeContext coffeeContext)
 {
     _coffeeContext = coffeeContext;
 }
Beispiel #2
0
 public StockController(ICoffeeContext CoffeeContext)
 {
     this.CoffeeContext = CoffeeContext;
 }
 public CoffeeOrderController(ICoffeeContext CoffeeContext)
 {
     this.CoffeeContext = CoffeeContext;
 }
 public IngredientController(ICoffeeContext CoffeeContext)
 {
     this.CoffeeContext = CoffeeContext;
 }
Beispiel #5
0
 public OrdersManager(ICoffeeContext context)
 {
     _coffeMachineContext = context;
 }
Beispiel #6
0
 public OrdersManager()
 {
     _coffeMachineContext = new CoffeeMachineDataContext();
 }