예제 #1
0
        public async Task <LastArtist> GetDetailArtistByMbid(string mbid)
        {
            var resp = await _artistApi.GetArtistInfoByMbidAsync(mbid);

            ThrowIfError(resp);
            return(resp.Content);
        }
예제 #2
0
        public async Task <LastArtist> GetDetailArtistByMbid(string mbid)
        {
            var resp = await _artistApi.GetArtistInfoByMbidAsync(mbid);

            return(resp.Success ? resp.Content : null);
        }