Example #1
0
        /// <summary>
        /// Returns true if OrderStatisticsResponse instances are equal
        /// </summary>
        /// <param name="other">Instance of OrderStatisticsResponse to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(OrderStatisticsResponse other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     Total == other.Total ||
                     Total != null &&
                     Total.Equals(other.Total)
                     ) &&
                 (
                     Last24h == other.Last24h ||
                     Last24h != null &&
                     Last24h.Equals(other.Last24h)
                 ) &&
                 (
                     SaleVelocityPerSeconds == other.SaleVelocityPerSeconds ||
                     SaleVelocityPerSeconds != null &&
                     SaleVelocityPerSeconds.Equals(other.SaleVelocityPerSeconds)
                 ));
        }
Example #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 (Total != null)
         {
             hashCode = hashCode * 59 + Total.GetHashCode();
         }
         if (Last24h != null)
         {
             hashCode = hashCode * 59 + Last24h.GetHashCode();
         }
         if (SaleVelocityPerSeconds != null)
         {
             hashCode = hashCode * 59 + SaleVelocityPerSeconds.GetHashCode();
         }
         return(hashCode);
     }
 }