public bool Equals(Dependency other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Name, Name) && other.IsMandatory.Equals(IsMandatory);
 }
Example #2
0
 public void AddDependency(Dependency dependency)
 {
     _dependencies.Fill(dependency);
 }
Example #3
0
 public void AddDependency(Dependency dependency)
 {
     _dependencies.Fill(dependency);
 }