public ActionResult DeleteConfirmed(int id) { videoGame videoGame = db.videoGames.Find(id); db.videoGames.Remove(videoGame); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "Id,Name,Description,minimunRequirements,Price,Publiser,Developer")] videoGame videoGame) { if (ModelState.IsValid) { db.Entry(videoGame).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(videoGame)); }
public ActionResult Create([Bind(Include = "Id,Name,Description,minimunRequirements,Price,Publiser,Developer")] videoGame videoGame) { if (ModelState.IsValid) { db.videoGames.Add(videoGame); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(videoGame)); }
// GET: videoGames/Delete/5 public ActionResult Delete(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } videoGame videoGame = db.videoGames.Find(id); if (videoGame == null) { return(HttpNotFound()); } return(View(videoGame)); }