public ActionResult Actualizar(string id, string PropertyName, string value) { bool status = false; string mensaje = "No Modificado"; List <ModelCarreras> carreras = ActualizarModelo(id, value, PropertyName); ModelCarreras car = new ModelCarreras(); if (carreras != null) { foreach (ModelCarreras t in carreras) { if (t.Codigo.Equals(id)) { car = t; } } string res = api.ConnectPUT(car.ToJsonString(), "/Carreras", id); if (res.Equals("1")) { status = true; mensaje = "Valor modificado"; } return(Json(new { value = value, status = status, mensaje = mensaje })); } else { return(Json(new { value = value, status = status, mensaje = mensaje })); } }
public ActionResult Crear(ModelCarreras carrera) { string res = api.ConnectPOST(carrera.ToJsonString(), "/Carreras"); if (res.Equals("1")) { return(RedirectToAction("Carreras", "Carreras")); } else { ViewBag.error = res; return(View()); } }