public List<Item> getItemByCategory(string category)
 {
     BusinessLogic.InventoryController BL = new BusinessLogic.InventoryController();
     return BL.getItemByCategory(category);
 }
Example #2
0
 public List <Item> getItemByCategory(string category)
 {
     BusinessLogic.InventoryController BL = new BusinessLogic.InventoryController();
     return(BL.getItemByCategory(category));
 }