public Task UpdatePullRequestAsync(string pullRequestUri, PullRequest pullRequest)
 {
     throw new NotImplementedException();
 }
 public Task <string> CreatePullRequestAsync(string repoUri, PullRequest pullRequest)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 public Task UpdatePullRequestAsync(string pullRequestUri, PullRequest pullRequest)
 {
     return(_gitClient.UpdatePullRequestAsync(pullRequestUri, pullRequest));
 }
Beispiel #4
0
 public Task <string> CreatePullRequestAsync(string repoUri, PullRequest pullRequest)
 {
     return(_gitClient.CreatePullRequestAsync(repoUri, pullRequest));
 }
Beispiel #5
0
 public Task <string> CreatePullRequestAsync(string repoUri, PullRequest pullRequest)
 {
     CheckForValidGitClient();
     return(_gitClient.CreatePullRequestAsync(repoUri, pullRequest));
 }