private void Facturar() { FrmListVentas frmListVentas = new FrmListVentas(true); if (frmListVentas.ShowDialog() != DialogResult.OK) { return; } new FrmFacturacion(frmListVentas.ConseguirVentaSeleccionada().Id).ShowDialog(); }
private void BtnGenerar_Click(object sender, EventArgs e) { FrmListVentas frmListVentas = new FrmListVentas(true); if (frmListVentas.ShowDialog() != DialogResult.OK) { return; } new FrmFacturacion(frmListVentas.ConseguirVentaSeleccionada().Id).ShowDialog(); _consultar(); }