예제 #1
0
 public PostServices(IPostRepository postRepository, IBlobServices blobServices, ICommentPostRepository commentPostRepository, ILikePostRepository likePostRepository) : base(postRepository)
 {
     _postRepository        = postRepository;
     _blobServices          = blobServices;
     _commentPostRepository = commentPostRepository;
     _likePostRepository    = likePostRepository;
 }
예제 #2
0
 public CommentPostServices(ICommentPostRepository commentPostRepository) : base(commentPostRepository)
 {
     _commentPostRepository = commentPostRepository;
 }