public ActionResult Edit(int id, FormCollection collection) { var newGenre = new Genre(collection, id); genreServices.UpdateGenre(newGenre); return(RedirectToAction("Index")); }
public ActionResult EditGenre(GenreModel model) { _genreServices = new GenreServices(); _genreServices.UpdateGenre(model); return(RedirectToAction("ListGenre")); }