public void deductEditItem(Item item) { try { itemDao.deductEditItem(item); } catch (CentralStockDAOException se) { throw new CentralStockServiceException(se + ""); } }
public void updateItem(Item item) throws CentralStockServiceException { try { itemDao.updateItem(item); } catch (CentralStockDAOException se) { throw new CentralStockServiceException(se + ""); } }
public String getItemListCle() { return itemDao.getItemListCle(); }
public String getItemListSta() { return itemDao.getItemListSta(); }
public void updateItemOfOrderes(Item item) { itemDao.updateItemOfOrderes(item); }
public List<Item> getAllItemList(String itemName) { return itemDao.getAllItemList(itemName); }
public List<Item> getItemList2() { return itemDao.getItemList2(); }