Exemple #1
0
 public ActionResult Edit(Genre genre)
 {
     _service.UpdateGenre(genre.ToBllGenre());
     return RedirectToAction("Index");
 }
Exemple #2
0
 public ActionResult Create(Genre genre)
 {
     _service.CreateGenre(genre.ToBllGenre());
     return RedirectToAction("Index");
 }