Exemplo n.º 1
0
        public async Task <SpotibroModels.ArtistInformation> GetArtistInformationAsync(PartyGoer partyGoer, string artistId)
        {
            try
            {
                return(await _spotifyHttpClient.GetArtistInformationAsync(partyGoer, artistId));
            }
            catch (Exception ex)
            {
                await _logService.LogExceptionAsync(ex, "Error occurred while trying to get artist information");

                return(null);
            }
        }