Beispiel #1
0
        public List <InventoryStockBO> getCategoryBySupplier(String supplierName)
        {
            poda = new PurchaseOrderDA();
            List <InventoryStock> categorylist = poda.getCategoryListBySupplier(supplierName);

            List <InventoryStockBO> categorylst = convertStockBOList(categorylist);

            return(categorylst);
        }