public async Task <List <ArtistViewModel> > GetAllArtistAsync(CancellationToken ct = default(CancellationToken))
        {
            var artists = ArtistConverter.ConvertList(await _artistRepository.GetAllAsync(ct));

            return(artists.ToList());
        }