示例#1
0
        public JsonResult consultarPlacaPOC(string NUMREG)
        {
            if (NUMREG == "")
            {
                bool campos = true;
                return(this.Json(new { campos }, JsonRequestBehavior.AllowGet));
            }
            N0203REGBusiness N0203REGBusiness = new N0203REGBusiness();
            var resposta = N0203REGBusiness.ConsultarPlacaPOC(NUMREG);

            return(this.Json(new { resposta }, JsonRequestBehavior.AllowGet));
        }