Ejemplo n.º 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 (FeeSKU != null)
         {
             hashCode = hashCode * 59 + FeeSKU.GetHashCode();
         }
         if (FeeUnitPrice != null)
         {
             hashCode = hashCode * 59 + FeeUnitPrice.GetHashCode();
         }
         if (FeeUnitTaxPrice != null)
         {
             hashCode = hashCode * 59 + FeeUnitTaxPrice.GetHashCode();
         }
         if (Quantity != null)
         {
             hashCode = hashCode * 59 + Quantity.GetHashCode();
         }
         if (FeeDescription != null)
         {
             hashCode = hashCode * 59 + FeeDescription.GetHashCode();
         }
         return(hashCode);
     }
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Returns true if LinkedFee instances are equal
        /// </summary>
        /// <param name="other">Instance of LinkedFee to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(LinkedFee other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     FeeSKU == other.FeeSKU ||
                     FeeSKU != null &&
                     FeeSKU.Equals(other.FeeSKU)
                     ) &&
                 (
                     FeeUnitPrice == other.FeeUnitPrice ||
                     FeeUnitPrice != null &&
                     FeeUnitPrice.Equals(other.FeeUnitPrice)
                 ) &&
                 (
                     FeeUnitTaxPrice == other.FeeUnitTaxPrice ||
                     FeeUnitTaxPrice != null &&
                     FeeUnitTaxPrice.Equals(other.FeeUnitTaxPrice)
                 ) &&
                 (
                     Quantity == other.Quantity ||
                     Quantity != null &&
                     Quantity.Equals(other.Quantity)
                 ) &&
                 (
                     FeeDescription == other.FeeDescription ||
                     FeeDescription != null &&
                     FeeDescription.SequenceEqual(other.FeeDescription)
                 ));
        }