Blog.Services.Implementation.CommentLikesService.CommentLikesService C# (CSharp) Method

CommentLikesService() public method

public CommentLikesService ( ICommentLikesLogic commentLikesLogic, ICommentsLogic commentsLogic, IRedisService redisService ) : System
commentLikesLogic ICommentLikesLogic
commentsLogic ICommentsLogic
redisService IRedisService
return System
        public CommentLikesService(ICommentLikesLogic commentLikesLogic, ICommentsLogic commentsLogic, IRedisService redisService)
        {
            _commentLikesLogic = commentLikesLogic;
            _commentsLogic = commentsLogic;
            _redisService = redisService;
        }