public ActionResult Create(MoveJSON movejson) { if (ModelState.IsValid) { context.MoveJSONs.Add(movejson); context.SaveChanges(); return RedirectToAction("Index"); } return View(movejson); }
public ActionResult Edit(MoveJSON movejson) { if (ModelState.IsValid) { context.Entry(movejson).State = EntityState.Modified; context.SaveChanges(); return RedirectToAction("Index"); } return View(movejson); }