Пример #1
0
 public OctokitGitReposService(IFavReposService favReposService)
 {
     _client          = new GitHubClient(_productInformation);
     _favReposService = favReposService;
 }
 public FavReposController(IFavReposService favReposService,
                           IGitReposService gitReposService)
 {
     _favReposService = favReposService;
     _gitReposService = gitReposService;
 }