Esempio n. 1
0
    public override bool Equals(object o)
    {
        AdminUserProfile other = o as AdminUserProfile;

        if (other == null)
        {
            return(false);
        }
        return(UpEmail.Equals(other.UpEmail));
    }
Esempio n. 2
0
 public override int GetHashCode()
 {
     return(UpEmail.GetHashCode());
 }