public ActionResult Create(mascota mascota) { if (ModelState.IsValid) { db.mascotas.Add(mascota); db.SaveChanges(); return RedirectToAction("Index"); } return View(mascota); }
public ActionResult Edit(mascota mascota) { if (ModelState.IsValid) { db.Entry(mascota).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } return View(mascota); }