public async Task CreateArtist(ArtistDTO artistDTO)
 {
     var artist = fromDto(artistDTO);
     await _artistContext.Create(artist);
 }