Ejemplo n.º 1
0
        /// <summary author="Caitlin Abelson" created="2019/02/28">
        /// </summary>
        /// <param name="newSetup">The object that is being added to</param>
        /// <returns></returns>
        public int InsertSetup(Setup newSetup)
        {
            int result = 0;

            try
            {
                result = _setupAccessor.InsertSetup(newSetup);
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw ex;
            }

            return(result);
        }