Пример #1
0
  @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);
      }
    }
  }
Пример #2
0
 public Empresa getEmpresa(String id) {
   return empresaDAO.getEmpresa(id);
 }