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

            return(OID == other.OID && _objectClassMock.Equals(other.Table));
        }