/// <summary>
 /// Creates a new pull request. The request URL you provide is the destination repository URL.
 /// For this reason, you must specify an explicit source repository in the request object if you want to pull from a different repository.
 /// </summary>
 /// <param name="pullRequest">The pull request.</param>
 /// <returns></returns>
 public object PostPullRequest(PullRequest pullRequest)
 {
     return(_repositoriesEndPoint.PostPullRequest(_accountName, _repository, pullRequest));
 }