}
private void cargarCombo(){
List<Pabellon> lista = ec.createQuery("select p from Pabellon p", Pabellon.class).getResultList();
for (int i = 0; i < lista.size(); i++) {
Pabellon pabellon = lista.get(i);
comboBox.addItem(pabellon.getCodigo()+" - "+ pabellon.getDescripcion());
}
}