public RepositoriesService( GraphQLHttpClient graphQlClient, IHttpClientFactory clientFactory, NugetService nugetService, NpmService npmService, MavenService mavenService, CocoaPodsService cocoaPodsService, AzureSdkService azureSdkService, GithubAuthService githubAuthService, MicrosoftOpenSourceService msOpenSourceService, IMemoryCache memoryCache, IConfiguration config, ILogger <RepositoriesService> logger) { _graphQlClient = graphQlClient; _clientFactory = clientFactory; _nugetService = nugetService; _npmService = npmService; _mavenService = mavenService; _cocoaPodsService = cocoaPodsService; _azureSdkService = azureSdkService; _cache = memoryCache; _config = config; _logger = logger; _githubAuthService = githubAuthService; _msOpenSourceService = msOpenSourceService; }
public RepositoriesService( GraphQLHttpClient graphQlClient, IHttpClientFactory clientFactory, NugetService nugetService, NpmService npmService, AzureSdkService azureSdkService, GithubAuthService githubAuthService, IMemoryCache memoryCache, IConfiguration config) { _graphQlClient = graphQlClient; _clientFactory = clientFactory; _nugetService = nugetService; _npmService = npmService; _azureSdkService = azureSdkService; _cache = memoryCache; _config = config; _githubAuthService = githubAuthService; }