Ejemplo n.º 1
0
 public void SetUp()
 {
     this.dataSource = new UserOrderProductDataSet();
     this.graph      = new DataJoinGraph(DataGraph.Create(this.dataSource));
 }
 public void SetUp()
 {
     this.dataSource = new UserOrderProductDataSet();
     this.graph = new DataJoinGraph(DataGraph.Create(this.dataSource));
 }
 public DataTableJoinSortAlgorithm(DataJoinGraph visitedGraph)
 {
     if (visitedGraph == null)
         throw new ArgumentNullException("visitedGraph");
     this.visitedGraph = visitedGraph;
 }