Exemplo n.º 1
0
 public virtual bool Equals(AgentAdherence other)
 {
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(this.Profile.Equals(other.Profile));
 }
Exemplo n.º 2
0
 public bool Equals(AgentAdherence x, AgentAdherence y)
 {
     if (ReferenceEquals(x, y))
     {
         return(true);
     }
     if (x == null || y == null)
     {
         return(false);
     }
     return(x.Equals(y));
 }
Exemplo n.º 3
0
 public virtual int GetHashCode(AgentAdherence obj)
 {
     return(obj.GetHashCode());
 }