Ejemplo n.º 1
0
        /// <summary author="Caitlin Abelson" created="2019/02/28">
        /// SelectAllSetups retrieves all of the setups into a list to sent to the presentation layer.
        /// </summary>
        /// <returns></returns>
        public List <Setup> SelectAllSetups()
        {
            List <Setup> setups = new List <Setup>();

            try
            {
                setups = _setupAccessor.SelectAllSetup();
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw ex;
            }

            return(setups);
        }