Blog.Services.Helpers.Wcf.CommunityResource.GetMore C# (CSharp) Метод

GetMore() публичный Метод

public GetMore ( int skip ) : List
skip int
Результат List
        public List<Community> GetMore(int skip)
        {
            using (var svc = new ServiceProxyHelper<ICommunityService>("CommunityService"))
            {
                return svc.Proxy.GetMore(skip);
            }
        }