public ChildObject(long row)
     : base(row)
 {
     this.Name = "";
     this.Parent = new ParentObject();
 }
 public ChildObject()
     : base()
 {
     this.Name = "";
     this.Parent = new ParentObject();
 }