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