Esempio n. 1
0
        public override bool Equals(IBusinessEntity other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }

            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            if (other.GetType() != typeof(Configuration))
            {
                return(false);
            }

            return(Equals(Id, other.Id));
        }