public Menu(ICustomerBL customerBL, ILocationBL locationBL, IProductBL productBL, IItemBL itemBL, IOrderBL orderBL, IProductOrderBL productOrderBL) { _customerBL = customerBL; _locationBL = locationBL; _productBL = productBL; _itemBL = itemBL; _orderBL = orderBL; _productOrderBL = productOrderBL; }
public ItemController() { _categoryBL = new ItemBL(); }
public ItemController(IItemBL ItemBL) { _ItemBL = ItemBL; }
public ItemController(IItemBL itemBL) { _itemBL = itemBL; }
public ItemController() { _itemBL = new ItemBL(); }