示例#1
0
        public ActionResult ProfileExists(string userId)
        {
            bool exists = _customerService.CustomerProfileExists(userId);

            return(Json(exists));
        }