Example #1
0
 public ObjectNode(string guid, string name, TableType type, string parentGuid, ObjectNode parent)
 {
     Guid       = guid;
     Name       = name;
     Type       = type;
     Parent     = parent;
     ParentGuid = parentGuid;
 }
Example #2
0
 public ObjectNode(string guid, string name, TableType type, string parentGuid, ObjectNode parent, string shortNameType, int aoLevel)
     : this(guid, name, type, parentGuid, parent)
 {
     ShortNameType = shortNameType;
     AOLevel       = aoLevel;
 }