public bool Equals(LocalityViewModel other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.ZipCode, ZipCode) && Equals(other.CountyName, CountyName));
 }
 public bool Equals(LocalityViewModel other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.ZipCode, ZipCode) && Equals(other.CountyName, CountyName);
 }