public ActionResult DeleteConfirmed(int id) { LICITACIONES lICITACIONES = db.LICITACIONES.Find(id); db.LICITACIONES.Remove(lICITACIONES); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "LICITACION_ID,SOLICITUD_ID,LICITACION_NUMERO,LICITACION_ANIO,LICITACION_INICIO,LICITACION_FINALIZACION,LICITACION_DESCRIPCION")] LICITACIONES lICITACIONES) { if (ModelState.IsValid) { db.Entry(lICITACIONES).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.SOLICITUD_ID = new SelectList(db.SOLICITUDES, "SOLICITUD_ID", "SOLICITUD_RESPONSABLE", lICITACIONES.SOLICITUD_ID); return(View(lICITACIONES)); }
// GET: LICITACIONES/Details/5 public ActionResult Details(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } LICITACIONES lICITACIONES = db.LICITACIONES.Find(id); if (lICITACIONES == null) { return(HttpNotFound()); } return(View(lICITACIONES)); }
// GET: LICITACIONES/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } LICITACIONES lICITACIONES = db.LICITACIONES.Find(id); if (lICITACIONES == null) { return(HttpNotFound()); } ViewBag.SOLICITUD_ID = new SelectList(db.SOLICITUDES, "SOLICITUD_ID", "SOLICITUD_RESPONSABLE", lICITACIONES.SOLICITUD_ID); return(View(lICITACIONES)); }