public ActionResult DeleteConfirmed(int id) { PRO9_Instrucciones_de_Seguridad pRO9_Instrucciones_de_Seguridad = db.PRO9_Instrucciones_de_Seguridad.Find(id); db.PRO9_Instrucciones_de_Seguridad.Remove(pRO9_Instrucciones_de_Seguridad); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "idCode,Cod_PRO,Informacion")] PRO9_Instrucciones_de_Seguridad pRO9_Instrucciones_de_Seguridad) { if (ModelState.IsValid) { db.Entry(pRO9_Instrucciones_de_Seguridad).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.Cod_PRO = new SelectList(db.PRO1_Productos, "Cod_pro", "COD_PRODUCTO", pRO9_Instrucciones_de_Seguridad.Cod_PRO); return(View(pRO9_Instrucciones_de_Seguridad)); }
// GET: PRO9_Instrucciones_de_Seguridad/Details/5 public ActionResult Details(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } PRO9_Instrucciones_de_Seguridad pRO9_Instrucciones_de_Seguridad = db.PRO9_Instrucciones_de_Seguridad.Find(id); if (pRO9_Instrucciones_de_Seguridad == null) { return(HttpNotFound()); } return(View(pRO9_Instrucciones_de_Seguridad)); }
// GET: PRO9_Instrucciones_de_Seguridad/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } PRO9_Instrucciones_de_Seguridad pRO9_Instrucciones_de_Seguridad = db.PRO9_Instrucciones_de_Seguridad.Find(id); if (pRO9_Instrucciones_de_Seguridad == null) { return(HttpNotFound()); } ViewBag.Cod_PRO = new SelectList(db.PRO1_Productos, "Cod_pro", "COD_PRODUCTO", pRO9_Instrucciones_de_Seguridad.Cod_PRO); return(View(pRO9_Instrucciones_de_Seguridad)); }