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

GetMorePostsByTag() public method

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