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);
            }
        }