Ejemplo n.º 1
0
 public CommentLikeController(
     IUserRepository userRepository,
     ICommentRepository commentRepository,
     ICommentLikeRepository commentLikeRepository)
 {
     _userRepository        = userRepository;
     _commentRepository     = commentRepository;
     _commentLikeRepository = commentLikeRepository;
 }
Ejemplo n.º 2
0
 public CommentLikeController(ICommentLikeRepository commentLikeRepository)
 {
     _commentLikeRepository = commentLikeRepository;
 }
Ejemplo n.º 3
0
 public CommentLikesLogic(ICommentLikeRepository commentLikeRepository)
 {
     _commentLikeRepository = commentLikeRepository;
 }