Ejemplo n.º 1
0
 public TClsDetailMs()
 {
     id             = new TClsDetailMsId();
     iClsDetailDesc = String.Empty;
     iInqItem       = String.Empty;
     iEntryDate     = DateTime.MinValue;
     iUpdDate       = DateTime.MinValue;
     iUpdTimestamp  = String.Empty;
 }
Ejemplo n.º 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);
            }
            TClsDetailMsId castObj = (TClsDetailMsId)obj;

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