Blog.Services.Helpers.Wcf.CommunityResource.GetMore C# (CSharp) Method

GetMore() public method

public GetMore ( int skip ) : List
skip int
return List
        public List<Community> GetMore(int skip)
        {
            using (var svc = new ServiceProxyHelper<ICommunityService>("CommunityService"))
            {
                return svc.Proxy.GetMore(skip);
            }
        }