public FluentSpotifyClient(IFluentSpotifyHttpClientFactory httpClientFactory, ICurrentUserProvider currentUserProvider)
 {
     this.contextData = new ContextData(httpClientFactory, currentUserProvider);
     this.rootBuilder = new BuilderBase.RootBuilder(this.contextData);
 }
예제 #2
0
 public ContextData(IFluentSpotifyHttpClientFactory httpClientFactory, ICurrentUserProvider currentUserProvider)
 {
     this.HttpClientFactory   = httpClientFactory;
     this.CurrentUserProvider = currentUserProvider;
 }