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

GetMoreCreatedByUser() public method

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