Example #1
0
 public NamedSubentityRef(string name, BaseObjectRef parent, string cDOTypeName)
     : this(name, parent)
 {
     this.CDOTypeName = cDOTypeName;
 }
Example #2
0
 public SubentityRef(string id, BaseObjectRef parent, string cDOTypeName)
     : this(id, parent)
 {
     this.CDOTypeName = cDOTypeName;
 }
Example #3
0
 public NamedSubentityRef(string name, BaseObjectRef parent)
     : this(name)
 {
     this.Parent = parent;
 }
Example #4
0
 public SubentityRef(string id, BaseObjectRef parent)
     : this(id)
 {
     this.Parent = parent;
 }