コード例 #1
0
        /// <summary>
        /// Creator: Brandyn T. Coverdill
        /// Created: 2020/04/07
        /// Approver: Dalton Reierson
        /// Approver:  Jesse Tomash
        ///
        /// Retrieves a list of Item Reports.
        /// </summary>
        ///
        /// <remarks>
        /// Updated By:
        /// Updated:
        /// Update:
        /// </remarks>
        public List <ItemReport> retrieveItemReports()
        {
            List <ItemReport> itemReports = new List <ItemReport>();

            try
            {
                itemReports = _itemReportAccessor.getAllItemReports();
            }
            catch (Exception ex)
            {
                throw new ApplicationException("No Item Reports Found", ex);
            }

            return(itemReports);
        }