Blog.Services.Helpers.Wcf.UsersResource.GetUsers C# (CSharp) Method

GetUsers() public method

public GetUsers ( int threshold = 10, int skip = 10 ) : List
threshold int
skip int
return List
        public List<User> GetUsers(int threshold = 10, int skip = 10)
        {
            using (var svc = new ServiceProxyHelper<IUsersService>("UsersService"))
            {
                return svc.Proxy.GetUsers(threshold, skip);
            }
        }
        public List<User> GetUsersByCommunity(int communityId, int threshold = 5, int skip = 10)