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

GetUsersByCommunity() public method

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