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

Get() public method

public Get ( int commentId ) : List
commentId int
return List
        public List<CommentLike> Get(int commentId)
        {
            return _commentLikesLogic.Get(commentId);
        }