Examples of BolsistaPK


Examples of br.ufra.pibid.modelo.entidade.BolsistaPK

            rn.salvar(discente);
        }
        for (Discente discente : estaonoprojeto) {

            discente.setStatus(1);
            bolsistaPK = new BolsistaPK();
            bolsistaPK.setDiscente(discente.getId());
            bolsistaPK.setProjeto(projeto.getId());
            bolsista.setBolsistaPK(bolsistaPK);
            rn.salvar(discente);
            brn.salvar(bolsista);
View Full Code Here

Examples of br.ufra.pibid.modelo.entidade.BolsistaPK

        return "/restrito/projeto/listagem.xhtml?faces-redirect=true";
    }

    public String salvar() {
        for (Discente discente : source) {
            bolsistaPK = new BolsistaPK();
            bolsistaPK.setDiscente(discente.getId());
            bolsistaPK.setProjeto(projeto.getId());
            brn.salvar(bolsista);
        }
        return listagem();
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.