Beispiel #1
0
 public void RemoveDependency(GoalDependency dependency)
 {
     _dependencies.Remove(dependency);
 }
Beispiel #2
0
 public void AddDependency(GoalDependency dependency)
 {
     //TODO: Should I bother with the given dependencies Id and this goals id equality?
     _dependencies.Add(dependency);
 }