Esempio n. 1
0
        public ActionResult EditGenre(int id)
        {
            _genreServices = new GenreServices();
            var model = _genreServices.GetGenreById(id);

            return(View(model));
        }