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