public void CargarGrilla()
 {
     try
     {
         gdrListaFacturas.DataSource = AD_Facturas.ObtenerListadoFacturas();
     }
     catch (Exception ex)
     {
         MessageBox.Show("Error al obtener facturas");
     }
 }
        private void CargarReporteCompleto()
        {
            DataTable tabla = new DataTable();

            tabla = AD_Facturas.ObtenerListadoFacturas();

            ReportDataSource ds = new ReportDataSource("DataSetFacturas", tabla);

            reporteFacturasPorFecha.LocalReport.DataSources.Clear();
            reporteFacturasPorFecha.LocalReport.DataSources.Add(ds);
            reporteFacturasPorFecha.Refresh();
        }
        private void RepDeFacturasEnRangoDeFechas_Load(object sender, EventArgs e)
        {
            DataTable tabla = new DataTable();

            tabla = AD_Facturas.ObtenerListadoFacturas();

            ReportDataSource ds = new ReportDataSource("DataSetFacturas", tabla);

            reporteFacturasPorFecha.LocalReport.DataSources.Clear();
            reporteFacturasPorFecha.LocalReport.DataSources.Add(ds);
            this.reporteFacturasPorFecha.RefreshReport();
        }