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;
 }
Esempio n. 2
0
 public PostsRepliesController(IPostReplyService postReplyService)
 {
     this._postReplyService = postReplyService;
 }