public ActionResult Create(Product product) { if (ModelState.IsValid) { db.Products.Add(product); db.SaveChanges(); return RedirectToAction("Index"); } ViewBag.PetTypeId = new SelectList(db.PetTypes, "Id", "Name", product.PetTypeId); return View(product); }
public ActionResult Edit(Product product) { if (ModelState.IsValid) { db.Entry(product).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } ViewBag.PetTypeId = new SelectList(db.PetTypes, "Id", "Name", product.PetTypeId); return View(product); }