Blog.Services.Helpers.Wcf.PostsResource.GetMorePostsByUser C# (CSharp) Method

GetMorePostsByUser() public method

public GetMorePostsByUser ( int userId, int skip ) : List
userId int
skip int
return List
        public List<Post> GetMorePostsByUser(int userId, int skip)
        {
            using (var svc = new ServiceProxyHelper<IPostsService>("PostsService"))
            {
                return svc.Proxy.GetMorePostsByUser(userId, skip);
            }
        }