Exemplo n.º 1
0
        public ActionResult Update(int albumId)
        {
            var album = _service.GetAlbum(albumId);

            UpdateAlbumModel albumModel = Mapper.Map <Album, UpdateAlbumModel>(album);

            return(View(albumModel));
        }