Blog.Services.Implementation.UsersService.GetUsers C# (CSharp) 메소드

GetUsers() 공개 메소드

public GetUsers ( int threshold = 10, int skip = 10 ) : List
threshold int
skip int
리턴 List
        public List<User> GetUsers(int threshold = 10, int skip = 10)
        {
            return _usersLogic.GetUsers(threshold, skip);
        }