Beispiel #1
0
        public void consultarReportes(string orden)
        {
            try
            {
                obj_reporte    = new Reportes();
                table_reportes = new DataTable();

                table_reportes           = obj_reporte.ConsultarArticulosReportes(idOrden);
                ReportesList.DataSource  = table_reportes;
                ArticulosList.DataSource = table_reportes;
                ReportesList.DataBind();
                ArticulosList.DataBind();
            }
            catch (Exception)
            {
                throw;
            }
        }