private void btnReportCliente_Click(object sender, EventArgs e)
        {
            this.Close();
            ReporteClientes reportC = new ReporteClientes();

            reportC.Show();
        }
Exemplo n.º 2
0
        private void ReporteButton_Click(object sender, EventArgs e)
        {
            if (lista.Count == 0)
            {
                lista = BLL.ClienteBLL.Buscar();
            }
            ReporteClientes abrir = new ReporteClientes(lista);

            abrir.Show();
        }