public ActionResult Details(int id) { var model = _artistsService.ArtistById(id); ViewBag.Title = model.Name; return(View(model)); }