示例#1
0
        /// <summary author="James Heim" created="2019/04/25">
        /// Delete the specified tabline.
        /// </summary>
        /// <param name="memberTabLineID"></param>
        /// <returns>Whether the Delete was successful.</returns>
        public bool DeleteMemberTabLine(int memberTabLineID)
        {
            bool result = false;

            try
            {
                result = (1 == _memberTabAccessor.DeleteMemberTabLine(memberTabLineID));
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw ex;
            }

            return(result);
        }