public NewsFeedStorage(IPublicationsApi publicationsApi, ICommentsApi commentsApi, IReactionsApi reactionsApi, ICurrentUserProvider currentUserProvider) { this.publicationsApi = publicationsApi; this.commentsApi = commentsApi; this.reactionsApi = reactionsApi; this.currentUserProvider = currentUserProvider; Reactions = new NewsFeedReactionsStorage(reactionsApi); Comments = new NewsFeedCommentsStorage(commentsApi); }
public NewsFeedStorage(IPublicationsApi publicationsApi, ICommentsApi commentsApi, IReactionsApi reactionsApi) { this.publicationsApi = publicationsApi; this.commentsApi = commentsApi; this.reactionsApi = reactionsApi; }
public NewsFeedReactionsStorage(IReactionsApi reactionsApi) { this.reactionsApi = reactionsApi; }