Пример #1
0
        public List <Item> RetrieveItemList()
        {
            List <Item> itemList = null;

            try
            {
                itemList = InventoryAccessor.RetrieveItems();
            }
            catch (Exception)
            {
                throw;
            }

            return(itemList);
        }