public PostFacade(IUnitOfWorkProvider unitOfWorkProvider, IPostService postService, IPostReplyService postReplyService, IFriendshipService friendshipService, IVoteService voteService, IImageService imageService, IHashtagService hashtagService) : base(unitOfWorkProvider) { this.postService = postService; this.voteService = voteService; this.imageService = imageService; this.postReplyService = postReplyService; this.hashtagService = hashtagService; this.friendshipService = friendshipService; }
public PostsRepliesController(IPostReplyService postReplyService) { this._postReplyService = postReplyService; }