Example #1
0
 public void SetParent(Corp _parent)
 {
     this.Parent = _parent;
 }
Example #2
0
 public void AddSubordinate(Corp corp)
 {
     corp.SetParent(this);
     this.m_subordinateList.Add(corp);
 }