Example #1
0
        /// <summary author="Kevin Broskow" created="2019/01/30">
        /// Used to retrieve all deactive Products from the database
        /// </summary>
        /// <updates>
        /// <update author="Jared Greenfield" date="2019/04/03">
        /// Converted to Item from Product
        /// </update>
        /// </updates>
        /// <returns>List<Item></returns>
        public List <Item> RetrieveDeactiveItems()
        {
            List <Item> deactiveItem = new List <Item>();

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

            return(deactiveItem);
        }