*
*/
@Action
public void searchMedic() {
try {
ControllerMedicView controllerMedicView = new ControllerMedicView();
controllerMedicView.showFormToSelect(null);
if (controllerMedicView.getSelectedEntity() != null) {
this.jCboxMedics.setSelectedItem(controllerMedicView.getSelectedEntity());
this.jCboxMedics.revalidate();
}
} catch (ExceptionDAO ex) {
FacadeDB.getInstance().refreshSession();
ErrorDialog.showError(this, ex.getMessage());