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