コード例 #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 (Id != null)
                {
                    hashCode = hashCode * 59 + Id.GetHashCode();
                }
                if (BookingRequestId != null)
                {
                    hashCode = hashCode * 59 + BookingRequestId.GetHashCode();
                }
                if (Worker != null)
                {
                    hashCode = hashCode * 59 + Worker.GetHashCode();
                }
                if (Agency != null)
                {
                    hashCode = hashCode * 59 + Agency.GetHashCode();
                }

                hashCode = hashCode * 59 + QualificationStatus.GetHashCode();
                return(hashCode);
            }
        }
コード例 #2
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 (ObjectType != null)
         {
             hashCode = hashCode * 59 + ObjectType.GetHashCode();
         }
         if (BookingRequestId != null)
         {
             hashCode = hashCode * 59 + BookingRequestId.GetHashCode();
         }
         if (Agency != null)
         {
             hashCode = hashCode * 59 + Agency.GetHashCode();
         }
         return(hashCode);
     }
 }