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