Ejemplo n.º 1
0
        public async Task <IActionResult> All(string orderBy)
        {
            var artistsAllViewModel = await artistService.GetAllArtistsAsync();

            artistsAllViewModel = artistService.OrderArtists(artistsAllViewModel, orderBy);

            return(View(artistsAllViewModel));
        }