Пример #1
0
 /// <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 async Task <Comment> GetIssueComment(Issue issue, int?commentId)
 {
     return(await _repositoriesEndPoint.GetIssueComment(issue, commentId));
 }
Пример #2
0
 /// <summary>
 /// Get a specific comment of the issue.
 /// </summary>
 /// <param name="commentId">The comment identifier.</param>
 /// <returns></returns>
 public async Task <Comment> GetIssueComment(int?commentId)
 {
     return(await _repositoriesEndPoint.GetIssueComment(_issueId, commentId));
 }