public ProcedureAttivazione updateProceduraAttivazione( ProcedureAttivazione procedureAttivazioneTO) throws ApplicationException { procedureAttivazioneDAO.update(procedureAttivazioneTO); ProcedureAttivazione procedureAttivazione = procedureAttivazioneDAO.findById(procedureAttivazioneTO.getIdProceduraAttivazione()); return procedureAttivazione; }
public ProcedureAttivazione saveProceduraAttivazione(ProcedureAttivazione procedureAttivazioneTO) throws ApplicationException { List listaProc = new ArrayList(); ProcedureAttivazione procedureAttivazione = null; listaProc = (ArrayList) procedureAttivazioneDAO.findProceduraUguale(procedureAttivazioneTO); if (listaProc.size() == 0) { procedureAttivazioneDAO.save(procedureAttivazioneTO); procedureAttivazione = procedureAttivazioneDAO.findById(procedureAttivazioneTO.getIdProceduraAttivazione()); } return procedureAttivazione; }