예제 #1
0
        protected bool Equals(JsonCurrencyData other)
        {
            bool result = this.ActualDate.Date == other.ActualDate.Date &&
                          this.CurrencyCodeValue.Equals(other.CurrencyCodeValue);

            return(result);
        }
예제 #2
0
        public override bool Equals(object o)
        {
            JsonCurrencyData other  = o as JsonCurrencyData;
            bool             result = other != null && this.Equals(other);

            return(result);
        }