public void salvar() { try { if (objeto.getId() == null) { dao.persistir(objeto); } else { dao.merge(objeto); } Util.mensagemInformacao("Objeto persistido com sucesso"); } catch (Exception e) { Util.mensagemErro(e.getMessage()); } }
public void remover(Integer id) { try { dao.remove(id); } catch (Exception e) { Util.mensagemErro(e.getMessage()); } }
public void editar(Integer id) { try { objeto = dao.getObjectById(id); } catch (Exception e) { Util.mensagemErro(e.getMessage()); } }