public async Task <LastArtist> GetDetailArtistByMbid(string mbid) { var resp = await _artistApi.GetArtistInfoByMbidAsync(mbid); ThrowIfError(resp); return(resp.Content); }
public async Task <LastArtist> GetDetailArtistByMbid(string mbid) { var resp = await _artistApi.GetArtistInfoByMbidAsync(mbid); return(resp.Success ? resp.Content : null); }