Exemplo n.º 1
0
        public Evaluaciones()
        {
            EvaluacionesBLL oEvalBLL = new EvaluacionesBLL();

            InitializeComponent();
            dgvEvaluaciones.DataSource = oEvalBLL.getEvaluaciones().Tables[0];
        }
Exemplo n.º 2
0
        public Recientes()
        {
            VacantesBLL       oVacBLL  = new VacantesBLL();
            CapacitacionesBLL oCapBLL  = new CapacitacionesBLL();
            EvaluacionesBLL   oEvalBll = new EvaluacionesBLL();

            InitializeComponent();
            dgvVacantesRecientes.DataSource = oVacBLL.getVacantes(5).Tables[0];
            dgvCapaRecientes.DataSource     = oCapBLL.getCapacitaciones(5).Tables[0];
            dgvEvalRecientes.DataSource     = oEvalBll.getEvaluaciones(5).Tables[0];
        }