Blog.Services.Helpers.Wcf.CommentLikesResource.Get C# (CSharp) Method

Get() public method

public Get ( int commentId ) : List
commentId int
return List
        public List<CommentLike> Get(int commentId)
        {
            using (var svc = new ServiceProxyHelper<ICommentLikesService>("CommentLikesService"))
            {
                return svc.Proxy.Get(commentId);
            }
        }
CommentLikesResource