public static TipoEvento tipoEventoDTOToTipoEvento(TipoEventoDTO eventoDTO) { TipoEvento tipoEvento = new TipoEvento(); tipoEvento.setId(eventoDTO.getId()); tipoEvento.setNombreEs(eventoDTO.getNombreEs()); tipoEvento.setNombreVa(eventoDTO.getNombreVa()); return tipoEvento; }
public TipoEvento(TipoEventoDTO tipoEventoDTO) { this.id = tipoEventoDTO.getId(); this.nombreEs = tipoEventoDTO.getNombreEs(); this.nombreVa = tipoEventoDTO.getNombreVa(); this.exportarICAA = tipoEventoDTO.getExportarICAA(); }