Ejemplo n.º 1
0
        public dynamic Telefone_Excluir(string IdTelefone)
        {
            TelefoneBE_SQL Sql = new TelefoneBE_SQL();

            Sql.Delete(IdTelefone);

            JsonResult jsonResult = Json(new { IdTelefone }, JsonRequestBehavior.AllowGet);

            jsonResult.MaxJsonLength = int.MaxValue;

            return(jsonResult);
        }