Exemplo n.º 1
0
 public CircularReference SetParent(CircularReference value)
 {
     this.Parent = value;
     this.Parent.Children.Add(this);
     return(this);
 }
Exemplo n.º 2
0
 public CircularReference AddChildren(CircularReference value)
 {
     value.Parent = this;
     this.Children.Add(value);
     return(this);
 }