コード例 #1
0
ファイル: Employee.cs プロジェクト: snahider/Refactoring-Golf
 public void RemoveSubordinate(Employee subordinate)
 {
     subordinates.Remove(subordinate);
     subordinate.Manager = null;
 }
コード例 #2
0
ファイル: Employee.cs プロジェクト: snahider/Refactoring-Golf
 public void AddSubordinate(Employee subordinate)
 {
     subordinates.Add(subordinate);
     subordinate.Manager = this;
 }