public void destroy(Integer id) throws NonexistentEntityException { EntityManager em = null; try { em = getEntityManager(); em.getTransaction().begin(); PagoVenta pagoVenta; try { pagoVenta = em.getReference(PagoVenta.class, id); pagoVenta.getId(); } catch (EntityNotFoundException enfe) { throw new NonexistentEntityException( "The pagoVenta with id " + id + " no longer exists.", enfe); } em.remove(pagoVenta); em.getTransaction().commit(); } finally { if (em != null) { em.close(); } } }
public void edit(PagoVenta pagoVenta) throws NonexistentEntityException, Exception { EntityManager em = null; try { em = getEntityManager(); em.getTransaction().begin(); pagoVenta = em.merge(pagoVenta); em.getTransaction().commit(); } catch (Exception ex) { String msg = ex.getLocalizedMessage(); if (msg == null || msg.length() == 0) { Integer id = pagoVenta.getId(); if (findPagoVenta(id) == null) { throw new NonexistentEntityException( "The pagoVenta with id " + id + " no longer exists."); } } throw ex; } finally { if (em != null) { em.close(); } } }