示例#1
0
        /// <summary name="Carlos Arzu" created="2019/04/26">
        /// Retrieve ShopID.
        /// </summary>
        public int retrieveShopID(string name)
        {
            int ID = 0;

            try
            {
                ID = _memberTabAccessor.SelectShopID(name);
            }
            catch (Exception ex)
            {
                ExceptionLogManager.getInstance().LogException(ex);
                throw;
            }
            return(ID);
        }