コード例 #1
0
        public bool EventNameCheck(string webalias)
        {
            //========Event Name Already Exist============
            var CustomerResponse = Exigo.GetCustomerByWebalias(webalias);

            if (CustomerResponse.Count > 0)
            {
                return(true);
            }

            return(false);
        }