public override bool Equals(object o) { AdminUserProfile other = o as AdminUserProfile; if (other == null) { return(false); } return(UpEmail.Equals(other.UpEmail)); }
public override int GetHashCode() { return(UpEmail.GetHashCode()); }