Package br.ufra.pibid.modelo.entidade

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


        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

Related Classes of br.ufra.pibid.modelo.entidade.BolsistaPK

Copyright © 2018 www.massapicom. 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.