protected override bool CheckEquality(Address other)
 {
     return(CareOf == other.CareOf &&
            Line1.AreEqualDespiteCase(other.Line1) &&
            City.AreEqualDespiteCase(other.City) &&
            Country.AreEqualDespiteCase(other.Country));
 }