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

Get() public method

public Get ( int postId ) : List
postId int
return List
        public List<PostLike> Get(int postId)
        {
            return _postLikesLogic.Get(postId);
        }