public FormReporteFacturas()
        {
            InitializeComponent();

            var _facturasBL   = new FacturaBL();     //CREAR VARIABLES
            var bindingSource = new BindingSource(); //Para enlasar el reporte

            bindingSource.DataSource = _facturasBL.ObtenerFacturas();

            var reporte = new ReporteFacturas();//creamos nuestro reporte que es nuestro archivo de cristal report

            reporte.SetDataSource(bindingSource);

            crystalReportViewer1.ReportSource = reporte;
            crystalReportViewer1.RefreshReport();//Genera el Reporte
        }