示例#1
0
        private void btnSin_Click(object sender, EventArgs e)
        {
            VentaNegocio negocio = new VentaNegocio();

            try
            {
                local = negocio.ListarInformeBajas();
                dgvVentas.DataSource = local;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }