public async Task <ActionResult> DeleteConfirmed(int id) { FuenteInternacionalProyectoExtencion fuenteInternacionalProyectoExtencion = await db.FuenteInternacionalProyectoExtencion.FindAsync(id); db.FuenteInternacionalProyectoExtencion.Remove(fuenteInternacionalProyectoExtencion); await db.SaveChangesAsync(); return(RedirectToAction("Index")); }
public async Task <ActionResult> Edit([Bind(Include = "Id,CODIGO_IES,NOMBRE_IES,ANO,SEMESTRE,UNIDAD_ORGANIZACINAL,CODIGO_PROYECTO,NOMBRE_PROYECTO,NOMBRE_INSTITUCION,PAIS,FUENTE_INTERNACIONAL,VALOR_FINANCIACION,FECHA_PERIODO")] FuenteInternacionalProyectoExtencion fuenteInternacionalProyectoExtencion) { if (ModelState.IsValid) { db.Entry(fuenteInternacionalProyectoExtencion).State = EntityState.Modified; await db.SaveChangesAsync(); return(RedirectToAction("Index")); } return(View(fuenteInternacionalProyectoExtencion)); }
// GET: FuenteInternacionalProyectoExtencion/Edit/5 public async Task <ActionResult> Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } FuenteInternacionalProyectoExtencion fuenteInternacionalProyectoExtencion = await db.FuenteInternacionalProyectoExtencion.FindAsync(id); if (fuenteInternacionalProyectoExtencion == null) { return(HttpNotFound()); } return(View(fuenteInternacionalProyectoExtencion)); }