internal SoundCloudRawClient(SCCredentials credentials, IUriBuilderFactory uriBuilderFactory, IWebGateway webGateway, ISerializer serializer) { Credentials = credentials; this.uriBuilderFactory = uriBuilderFactory; this.webGateway = webGateway; this.serializer = serializer; }
public override void SetUp() { base.SetUp(); scCredentials = new SCCredentials { ClientId = clientId, ClientSecret = clientSecret }; uriBuilderFactory = NewMock<IUriBuilderFactory>(); webGateway = NewMock<IWebGateway>(); serializer = NewMock<ISerializer>(); }
public override void SetUp() { base.SetUp(); scCredentials = new SCCredentials { ClientId = clientId, ClientSecret = clientSecret }; uriBuilderFactory = NewMock <IUriBuilderFactory>(); webGateway = NewMock <IWebGateway>(); serializer = NewMock <ISerializer>(); }
internal SoundCloudRawClientFactory(IUriBuilderFactory uriBuilderFactory, IWebGateway webGateway, ISerializer serializer) { this.uriBuilderFactory = uriBuilderFactory; this.webGateway = webGateway; this.serializer = serializer; }
public GamePictureFetcher(IConfigurationProvider configurationProvider, IWebGateway webGateway) { this.configurationProvider = configurationProvider; this.webGateway = webGateway; }
public OnlineGameFetcher(IConfigurationProvider configurationProvider, IWebGateway webGateway) { this.configurationProvider = configurationProvider; this.webGateway = webGateway; }
public PictureCacheChecker(IConfigurationProvider configurationProvider, IWebGateway webGateway) { this.configurationProvider = configurationProvider; this.webGateway = webGateway; }
public PlayerCountFetcher(IConfigurationProvider configurationProvider, IWebGateway webGateway) { this.configurationProvider = configurationProvider; this.webGateway = webGateway; }
public AvailableGamesCacheChecker(IConfigurationProvider configurationProvider, IWebGateway webGateway) { this.configurationProvider = configurationProvider; this.webGateway = webGateway; }