private void listAllPatients(Tuple request) {
    //		MolgenisUser user = new MolgenisUser();
    //		user.setId(this.getLogin().getUserId());
    //		this.getModel().setPatientSummaryVOs(this.patientService.find(user));
    SearchService searchService = ServiceLocator.instance().getSearchService();

    List<PatientSummaryDTO> patientSummaryVOs = searchService.findAllPatientSummaries();
    this.getModel().setPatientSummaryVOs(patientSummaryVOs);
    ((HttpServletRequestTuple) request)
        .getRequest()
        .setAttribute("patientSummaryVOs", this.getModel().getPatientSummaryVOs());
    this.getModel().setRawOutput(this.include(request, this.getModel().getPatientPager()));
    this.getModel()
        .setHeader(
            this.getModel().getPatientSummaryVOs().size()
                + " results for \"Display all patients\".");

    this.setView(new FreemarkerView("included.ftl", this.getModel()));
  }