Ejemplo n.º 1
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];
        }
Ejemplo n.º 2
0
 public Capacitaciones()
 {
     oCapsBLL = new CapacitacionesBLL();
     InitializeComponent();
     dgvCapacitaciones.DataSource = oCapsBLL.getCapacitaciones().Tables[0];
 }