public VentanaBlanqueoPIN(List <TarjetaDTO> pLista, ControladorDeOperaciones pControlador)
 {
     InitializeComponent();
     this.iControlador = pControlador;
     this.iLista       = pLista;
     foreach (var tarjeta in iLista)
     {
         string infoTarjeta = $"{tarjeta.Numero} - {tarjeta.Nombre} - {tarjeta.Tipo}";
         listBox.Items.Add(infoTarjeta);
     }
 }
 public FormPrincipal(int pDocumento)
 {
     InitializeComponent();
     this.iDocumento   = pDocumento;
     this.iControlador = new ControladorDeOperaciones();
 }
 public FormAcceso()
 {
     InitializeComponent();
     this.iControlador = new ControladorDeOperaciones();
 }