Example #1
0
 @Override
 public Page<D> findAll(Pageable pageable) {
   return repository.findAll(pageable);
 }
Example #2
0
 @Override
 public Iterable<D> findAll() {
   return repository.findAll();
 }