public async Task <ActionResult> DeleteConfirmed(long id) { Web_Documento web_Documento = await db.Web_Documento.FindAsync(id); db.Web_Documento.Remove(web_Documento); await db.SaveChangesAsync(); return(RedirectToAction("Index")); }
public async Task <ActionResult> Edit([Bind(Include = "documento_id,tipo,descripcion,ruta,FK_web_documento_estado_rips,fecha_modificacion")] Web_Documento web_Documento) { if (ModelState.IsValid) { db.Entry(web_Documento).State = EntityState.Modified; await db.SaveChangesAsync(); return(RedirectToAction("Index")); } ViewBag.FK_web_documento_estado_rips = new SelectList(db.Estado_RIPS, "estado_rips_id", "nombre", web_Documento.FK_web_documento_estado_rips); return(View(web_Documento)); }
// GET: Web_Documento/Details/5 public async Task <ActionResult> Details(long?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } Web_Documento web_Documento = await db.Web_Documento.FindAsync(id); if (web_Documento == null) { return(HttpNotFound()); } return(View(web_Documento)); }
// GET: Web_Documento/Edit/5 public async Task <ActionResult> Edit(long?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } Web_Documento web_Documento = await db.Web_Documento.FindAsync(id); if (web_Documento == null) { return(HttpNotFound()); } ViewBag.FK_web_documento_estado_rips = new SelectList(db.Estado_RIPS, "estado_rips_id", "nombre", web_Documento.FK_web_documento_estado_rips); return(View(web_Documento)); }