Esempio n. 1
0
 /// <summary>
 /// Exports the selected nodes trees associated with the selected nodes
 /// </summary>
 public void ExportSelectedNodeTrees()
 {
     foreach (NodeTree tree in GetNodeTrees(selectedNodes.ToList()))
     {
         SqlExporter.ExportNodeTree(tree);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Exports every complete and valid node tree
 /// </summary>
 public void Export()
 {
     foreach (NodeTree tree in nodeTrees)
     {
         SqlExporter.ExportNodeTree(tree);
     }
 }