Exemple #1
0
        /// <summary author="Richard Carroll" created="2019/01/30">
        /// This Method Requests Item Data from the Data Acccess
        /// Layer and passes it to the Presentation Layer if it's
        /// successful.
        /// </summary>
        public List <Item> RetrieveItemNamesAndIDs()
        {
            List <Item> items = new List <Item>();

            try
            {
                items = _itemAccessor.SelectItemNamesAndIDs();
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw ex;
            }

            return(items);
        }