Example #1
0
 public StargazerService(string gitId, IEnumerable <RepositoryNameModel> repository)
 {
     this.gitId      = gitId;
     this.repository = repository;
     client          = new CodeChallengeClient();
 }
Example #2
0
 public FollowersService(string gitId)
 {
     this.gitId = gitId;
     client     = new CodeChallengeClient();
 }
 public RepositoryService(string gitId)
 {
     this.gitId = gitId;
     client     = new CodeChallengeClient();
 }