예제 #1
0
파일: Goal.cs 프로젝트: Jurabek/Athena
 public void RemoveDependency(GoalDependency dependency)
 {
     _dependencies.Remove(dependency);
 }
예제 #2
0
파일: Goal.cs 프로젝트: Jurabek/Athena
 public void AddDependency(GoalDependency dependency)
 {
     //TODO: Should I bother with the given dependencies Id and this goals id equality?
     _dependencies.Add(dependency);
 }