コード例 #1
0
 public OctokitGitReposService(IFavReposService favReposService)
 {
     _client          = new GitHubClient(_productInformation);
     _favReposService = favReposService;
 }
コード例 #2
0
 public FavReposController(IFavReposService favReposService,
                           IGitReposService gitReposService)
 {
     _favReposService = favReposService;
     _gitReposService = gitReposService;
 }