Examples of IdlEvento


Examples of fing.satode.dominio.IdlEvento

        tipoE.add(t.getId());
        IdlTipoEvento idlTipoEvento=new IdlTipoEvento();
        Set<IdlEvento> eventosIdl=new HashSet<IdlEvento>();
        for(Evento e: EventoDAO.getInstance().listaEventosPorDepratamentoYTiposDeEvento(dto.getFechaFino(),dto.getFechaInicio(), d.getDepartamento().getId() ,tipoE))
        {
          eventosIdl.add(new IdlEvento(e.getDTO()));
        }
        if(eventos.size()>0)
          idlTipoEvento.setPocentaje((Float.valueOf(eventosIdl.size())/Float.valueOf(eventos.size()))*100);
       
        idlTipoEvento.setEventos(eventosIdl);
 
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.