public IActionResult GetallArtist()
 {
     return(View(_artist.GetAllArtists()));
 }
Exemplo n.º 2
0
        public ActionResult Index()
        {
            var artist = _artistService.GetAllArtists();

            return(View(artist));
        }