Example #1
0
    public override bool Equals(object o)
    {
        AdminAirport other = o as AdminAirport;

        if (other == null)
        {
            return(false);
        }
        return(ApIatacode.Equals(other.ApIatacode));
    }
Example #2
0
 public override int GetHashCode()
 {
     return(ApIatacode.GetHashCode());
 }