// DrinkMenu drinkMenu = new DrinkMenu();
 public CustomerMenu(IDrinkBL drinkBL, ICustomerBL customerBL, ILocationBL locationBL, IOrderBL orderBL, InventoryBL inventoryBL)
 {
     _customerBL  = customerBL;
     _drinkBL     = drinkBL;
     _locationBL  = locationBL;
     _orderBL     = orderBL;
     _inventoryBL = inventoryBL;
 }
예제 #2
0
 public OrderController(ICustomerBL customerBL, IMapper mapper, IOrderBL orderBL, ILocationBL locationBL, IDrinkBL drinkBL, IInventoryBL inventoryBL)
 {
     _customerBL  = customerBL;
     _mapper      = mapper;
     _orderBL     = orderBL;
     _locationBL  = locationBL;
     _drinkBL     = drinkBL;
     _inventoryBL = inventoryBL;
 }