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