Example #1
0
 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;
 }
Example #2
0
 public ItemController()
 {
     _categoryBL = new ItemBL();
 }
 public ItemController(IItemBL ItemBL)
 {
     _ItemBL = ItemBL;
 }
Example #4
0
 public ItemController(IItemBL itemBL)
 {
     _itemBL = itemBL;
 }
 public ItemController()
 {
     _itemBL = new ItemBL();
 }