Blog.Services.Implementation.UsersService.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)
        {
            return _usersLogic.GetUsers(threshold, skip);
        }