Ejemplo n.º 1
0
 public void MostrarEvento(IronMan.DTO.EventoDTO evento)
 {
     this.txtNombre.Text = evento.Nombre;
     this.txtLugar.Text = evento.Lugar;
     this.txtFecha.Text = evento.Fecha.ToString();
     this.txtComentario.Text = evento.Comentario;
 }