public VistaPrestamosPendientes(VistaPrestamo vistaPrestamo, GestorPrestamo gestorPrestamo)
        {
            InitializeComponent();

            this.vistaPrestamo  = vistaPrestamo;
            this.gestorPrestamo = gestorPrestamo;
        }
Example #2
0
        public VistaPrestamo(VistaPrincipal vistaPrincipal,
                             RepositorioRecursos repositorioRecursos,
                             RepositorioSolicitante repositorioSolicitante)
        {
            InitializeComponent();

            this.vistaPrincipal = vistaPrincipal;
            gestorPrestamo      = new GestorPrestamo(this, this.vistaPrincipal, repositorioRecursos, repositorioSolicitante);
        }
 public VistaPrestamo()
 {
     InitializeComponent();
     gestorPrestamo = new GestorPrestamo(this);
 }