Пример #1
0
 public CClsDetailBelongToClsMs()
 {
     id             = new TClsDetailMsId();
     iClsDetailDesc = String.Empty;
     iInqItem       = String.Empty;
     iEntryDate     = DateTime.MinValue;
     iUpdDate       = DateTime.MinValue;
     iUpdTimestamp  = String.Empty;
     tClsMs         = new TClsMs();
 }
Пример #2
0
        /// <summary>
        /// Local implementation of Equals based on unique value members
        /// </summary>
        public override bool Equals(object obj)
        {
            if (this == obj)
            {
                return(true);
            }
            if ((obj == null) || (obj.GetType() != this.GetType()))
            {
                return(false);
            }
            TClsMs castObj = (TClsMs)obj;

            return((castObj != null) &&
                   (this.iClsCd == castObj.IClsCd));
        }