public bool Equals(NakedObjectAssociationWrapper other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.assoc, assoc));
 }
Пример #2
0
 public bool Equals(NakedObjectAssociationWrapper other) {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.assoc, assoc);
 }