public void SetUp(DataSet dataSource)
 {
     this.graph = DataGraph.Create(dataSource);
     this.topo = new DataTableSortAlgorithm(this.graph);
 }
Esempio n. 2
0
 public DataTable[] GetSortedTables()
 {
     DataTableSortAlgorithm topo = new DataTableSortAlgorithm(this);
     topo.Compute();
     return topo.GetSortedTables();
 }