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