*/
@Action
public void searchPatient() {
try {
ControllerPatientView controllerPatientView = new ControllerPatientView();
controllerPatientView.showFormToSelect(null);
if (controllerPatientView.getSelectedEntity() != null) {
this.jCboxPatients.setSelectedItem(controllerPatientView.getSelectedEntity());
this.jCboxPatients.revalidate();
}
} catch (ExceptionDAO ex) {