Package br.com.syspartenon.partenon.domain

Examples of br.com.syspartenon.partenon.domain.Galeria


        this.evento = evento;
    }

    public Galeria getGaleria() {
        if(galeria == null){
            galeria = new Galeria();
            galeria.setSite(getEvento().getSite());
        }
        return galeria;
    }
View Full Code Here


        return fotoBC.findAll(galeria);
    }

    public Galeria getGaleria() {
        if(this.galeria == null) {
            this.galeria = new Galeria();
            if(this.galId.getValue() != null)
                this.galeria = galeriaBC.load(this.galId.getValue());
        }
        return galeria;
    }
View Full Code Here

TOP

Related Classes of br.com.syspartenon.partenon.domain.Galeria

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.