Package fing.satode.data

Examples of fing.satode.data.IdlTipoEventoDTO


  public void setEventos(Set<IdlEvento> eventos) {
    this.eventos = eventos;
  }
 
  public IdlTipoEventoDTO getDTO(){
    IdlTipoEventoDTO dto=new IdlTipoEventoDTO();
    dto.setId(id);
    dto.setPocentaje(pocentaje);
    ArrayList<EventoDTO> eventosDTOs=new ArrayList<EventoDTO>();
    for(IdlEvento e: eventos){
      eventosDTOs.add(e.getDTO());
    }
    dto.setEventos(eventosDTOs);
    dto.setTipoEvento(tipoEvento.getDTO());
    return dto;
  }
View Full Code Here

TOP

Related Classes of fing.satode.data.IdlTipoEventoDTO

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.