Examples of Conocimiento


Examples of com.m2m.modelo.Conocimiento

        if(!preferenciasDAO.hasPreferencia(
                usuario.getIdUsuario(), buscaOfrece, idConocimiento)){
            Preferencia pref = new Preferencia();
            pref.setBuscaOfrece(buscaOfrece);
            pref.setUsuario(usuario);
            pref.setConocimiento(new Conocimiento(idConocimiento));
            pref.setNivel(nivel);
            return preferenciasDAO.addPreferencia(pref);
        }else{
            return -1;
        }
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.