コード例 #1
0
 public GithubStatusNotifier(GithubHttpClient client, IOptions <Config> config, ILogger <GithubStatusNotifier> logger)
 {
     this.client = client;
     this.config = config.Value;
     this.logger = logger;
 }
コード例 #2
0
 public GithubFileFetcher(GithubHttpClient httpClient, IOptions <Config> config, ILogger <GithubFileFetcher> logger)
 {
     this.httpClient = httpClient;
     this.config     = config.Value;
     this.logger     = logger;
 }
コード例 #3
0
 public GithubCommitMessageFetcher(GithubHttpClient client, ILogger <GithubCommitMessageFetcher> logger)
 {
     this.client = client;
     this.logger = logger;
 }