public SpotifyWebApiClient(
     IMapper mapper,
     IHttpClientFactory httpClientFactory,
     ISpotifyWebApiSettings spotifyWebApiSettings,
     ILogger <ISpotifyWebApiClient> logger)
 {
     _logger = logger;
     _mapper = mapper;
     _spotifyWebApiSettings = spotifyWebApiSettings;
     _httpClientFactory     = httpClientFactory;
 }
Esempio n. 2
0
 public SpotifyWebApiClientExceptionFilter(ISpotifyWebApiSettings spotifyWebApiSettings) :
     base(spotifyWebApiSettings, "Spotify web api client exception occured")
 {
 }
Esempio n. 3
0
 public BaseExceptionFilter(ISpotifyWebApiSettings spotifyWebApiSettings, string errorTitle)
 {
     SpotifyWebApiSettings = spotifyWebApiSettings;
     ErrorTitle            = errorTitle;
 }