public JsonResult New(ObjEstudiante estudiante)
        {
            ObjMensaje Mensaje = new ObjMensaje();

            EstudianteControlador.NuevoEstudiante(estudiante, ref Mensaje);
            return(Json(Mensaje));
        }
        public ActionResult Edit(ObjEstudiante estudiante)
        {
            ObjMensaje Mensaje = new ObjMensaje();

            EstudianteControlador.EditarEstudiante(estudiante);
            return(Redirect("index"));
        }