Beispiel #1
0
 public virtual bool Equals(AgentAdherence other)
 {
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(this.Profile.Equals(other.Profile));
 }
Beispiel #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));
 }
Beispiel #3
0
 public virtual int GetHashCode(AgentAdherence obj)
 {
     return(obj.GetHashCode());
 }