Beispiel #1
0
        public IActionResult Artists()
        {
            Artists model = new Artists(artistsService.GetAllArtists().ToList(), hRService.GetAllCities().ToList(), hRService.GetAllCountries().ToList());

            return(View(model));
        }