/// <summary>
 /// Get a specific comment of an issue.
 /// </summary>
 /// <param name="issue">The issue.</param>
 /// <param name="commentId">The comment identifier.</param>
 /// <returns></returns>
 internal Comment GetIssueComment(Issue issue, int?commentId)
 {
     return(_repositoriesEndPoint.GetIssueComment(issue, commentId));
 }
Exemple #2
0
 /// <summary>
 /// Get a specific comment of the issue.
 /// </summary>
 /// <param name="commentId">The comment identifier.</param>
 /// <returns></returns>
 public Comment GetIssueComment(int?commentId)
 {
     return(_repositoriesEndPoint.GetIssueComment(_issueId, commentId));
 }