Package ecar.dao

Examples of ecar.dao.ItemEstruturaDao.alterar()


         
        // altera��o ou exclusao
        } else if(iett.getCodIett()!=null) {
          // alteracao
          if (iett.getIndAtivoIett().equals("S")) {
            itemDao.alterar(tx, request, usuarioLogado, iett);
            tipoOperacao = ConstantesECAR.TIPO_OPERACAO_ALTERACAO;
          // exclusao
          } else {
            itemDao.excluir(tx, new String[]{iett.getCodIett().toString()},usuarioLogado);
            tipoOperacao = ConstantesECAR.TIPO_OPERACAO_EXCLUSAO;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.