public ActionResult DeleteConfirmed(decimal id) { CONJUNTO cONJUNTO = db.CONJUNTO.Find(id); db.CONJUNTO.Remove(cONJUNTO); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "CODCONJUNTO,CODPRENDA,CANTIDAD")] CONJUNTO cONJUNTO) { if (ModelState.IsValid) { db.Entry(cONJUNTO).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.CODPRENDA = new SelectList(db.PRENDA, "CODPRENDA", "TALLA", cONJUNTO.CODPRENDA); ViewBag.CODCONJUNTO = new SelectList(db.PRENDA, "CODPRENDA", "TALLA", cONJUNTO.CODCONJUNTO); return(View(cONJUNTO)); }
// GET: conjunto/Details/5 public ActionResult Details(decimal id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } CONJUNTO cONJUNTO = db.CONJUNTO.Find(id); if (cONJUNTO == null) { return(HttpNotFound()); } return(View(cONJUNTO)); }
// GET: conjunto/Edit/5 public ActionResult Edit(decimal id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } CONJUNTO cONJUNTO = db.CONJUNTO.Find(id); if (cONJUNTO == null) { return(HttpNotFound()); } ViewBag.CODPRENDA = new SelectList(db.PRENDA, "CODPRENDA", "TALLA", cONJUNTO.CODPRENDA); ViewBag.CODCONJUNTO = new SelectList(db.PRENDA, "CODPRENDA", "TALLA", cONJUNTO.CODCONJUNTO); return(View(cONJUNTO)); }