add PullRequestReviewCommentReactionClient

This commit is contained in:
maddin2016
2016-06-01 11:24:49 +02:00
parent 2611af5b01
commit 3a4031fb9b
19 changed files with 208 additions and 5 deletions
@@ -1,19 +1,20 @@
using Octokit.Reactive.Internal;
using System;
using System.Reactive.Linq;
using System.Reactive.Threading.Tasks;
namespace Octokit.Reactive
{
public class ObservableIssueCommentReactionsClient : IObservableIssueCommentReactionsClient
{
readonly ICommitCommentReactionsClient _client;
readonly IIssueCommentReactionsClient _client;
readonly IConnection _connection;
public ObservableIssueCommentReactionsClient(IGitHubClient client)
{
Ensure.ArgumentNotNull(client, "client");
_client = client.Reaction.CommitComment;
_client = client.Reaction.IssueComment;
_connection = client.Connection;
}