public void SetParent(Corp _parent) { this.Parent = _parent; }
public void AddSubordinate(Corp corp) { corp.SetParent(this); this.m_subordinateList.Add(corp); }