Пример #1
0
        private void CargarSeleccionFactura()
        {
            facturas          oFacturas          = new facturas();
            FacturasImplement oFacturasImplement = new FacturasImplement();
            DataGridViewRow   row = this.dgvFacturas.CurrentRow;

            if (row != null)
            {
                _idFactura = Convert.ToInt32(row.Cells[1].Value);
                this.dgvConceptos.DataSource = oFacturasImplement.GetConceptosByIdFactDT(_idFactura);
            }
        }