Ejemplo n.º 1
0
 public NodeData(IdentifiedObject identified, bool isroot)
 {
     this.idenetifiedObj = identified;
     this.isRoot         = isroot;
     this.energized      = Energized.NotEnergized;
     this.type           = DMSType.GEOGRAPHICALREGION;
 }
Ejemplo n.º 2
0
 public NodeData(IdentifiedObject identified, DMSType type, bool isroot)
 {
     this.idenetifiedObj = identified;
     this.isRoot         = isroot;
     this.energized      = Energized.NotEnergized;
     this.type           = type;
 }