Пример #1
0
 public LastfmClient(LastAuth auth, HttpClient httpClient = null, ScrobblerBase scrobbler = null)
     : base(httpClient)
 {
     _lastAuth = auth;
     _scrobbler = scrobbler;
 }
Пример #2
0
 public LastfmClient(string apiKey, string apiSecret, HttpClient httpClient = null, ScrobblerBase scrobbler = null)
     : base(httpClient)
 {
     _lastAuth = new LastAuth(apiKey, apiSecret, httpClient);
     _scrobbler = scrobbler;
 }