Пример #1
0
 public bool Equals(ValidationStep other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other._type == _type && other._source == _source && _rules.SequenceEqual(other._rules));
 }
Пример #2
0
 public bool Equals(ValidationStep other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return other._type == _type && other._source == _source && _rules.SequenceEqual(other._rules);
 }