Ejemplo n.º 1
0
  public EventDTO(Evento e) {
    this.id = e.getId();
    this.name = e.getName();
    this.invate = e.getInvate();

    for (Account account : e.getAccessAccounts()) {
      this.accessAccounts.add(AccountDTO.convertToTransport(account));
    }
  }