コード例 #1
0
        public ActionResult CheckIfEmailExist(string email)
        {
            var mgr = new UserAuthRepository();

            return(Json(mgr.checkIfEmailExist(email)));
        }