public ActionResult Create(Oferta oferta) { if (ModelState.IsValid) { db.Ofertas.Add(oferta); db.SaveChanges(); return RedirectToAction("Index"); } ViewBag.id_cliente = new SelectList(db.Clientes, "id_cliente", "pais", oferta.id_cliente); return View(oferta); }
public ActionResult Edit(Oferta oferta) { if (ModelState.IsValid) { db.Entry(oferta).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } ViewBag.id_cliente = new SelectList(db.Clientes, "id_cliente", "pais", oferta.id_cliente); return View(oferta); }