Examples of IdlTipoEventoDTO


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
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.