@TransactionAttribute(TransactionAttributeType.REQUIRED) public void guardar(Empresa e) throws Exception { if (e.getCodigo().equals("01")) { if (empresaDAO.getEmpresa(e.getCodigo()) == null) { empresaDAO.crear(e); } else { empresaDAO.editar(e); } } }
public Empresa getEmpresa(String id) { return empresaDAO.getEmpresa(id); }