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

Get() public method

public Get ( int postId ) : List
postId int
return List
        public List<PostLike> Get(int postId)
        {
            using (var svc = new ServiceProxyHelper<IPostLikesService>("PostLikesService"))
            {
                return svc.Proxy.Get(postId);
            }
        }
PostLikesResource