Ejemplo n.º 1
0
        /// <summary author="Caitlin Abelson" created="2019/02/28">
        /// The manager method for selecting a setup by it's ID
        /// </summary>
        /// <param name="setupID"></param>
        /// <returns></returns>
        public Setup SelectSetup(int setupID)
        {
            Setup setup = new Setup();

            try
            {
                setup = _setupAccessor.SelectSetup(setupID);
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw ex;
            }
            return(setup);
        }