コード例 #1
0
 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;
 }
コード例 #2
0
 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;
 }