private void button1_Click(object sender, EventArgs e)
        {
            var factura = (Factura)listadeFacturasBindingSource.Current;

            _facturasBL.AgregarFacturaDetalle(factura);

            DeshabilitarHabilitarBotones(false);
        }
Exemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            var factura = (Factura)listaFacturasBindingSource.Current;

            _facturaBL.AgregarFacturaDetalle(factura);
        }