示例#1
0
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (DemandId != null)
         {
             hashCode = hashCode * 59 + DemandId.GetHashCode();
         }
         if (RequestorId != null)
         {
             hashCode = hashCode * 59 + RequestorId.GetHashCode();
         }
         return(hashCode);
     }
 }
示例#2
0
        /// <summary>
        /// Returns true if Demand instances are equal
        /// </summary>
        /// <param name="other">Instance of Demand to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(Demand other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     DemandId == other.DemandId ||
                     DemandId != null &&
                     DemandId.Equals(other.DemandId)
                     ) &&
                 (
                     RequestorId == other.RequestorId ||
                     RequestorId != null &&
                     RequestorId.Equals(other.RequestorId)
                 ));
        }
 public override int GetHashCode()
 {
     return(DemandId.GetHashCode() + ProviderId.GetHashCode());
 }
        public override bool Equals(object obj)
        {
            T_DemandToProvider other = (T_DemandToProvider)obj;

            return(DemandId.Equals(other.DemandId) && ProviderId.Equals(other.ProviderId));
        }