Beispiel #1
0
 public TDescMs()
 {
     id            = new TDescMsId();
     iNameDesc     = String.Empty;
     iNameKana     = String.Empty;
     iInqItem      = String.Empty;
     iEntryDate    = DateTime.MinValue;
     iUpdDate      = DateTime.MinValue;
     iUpdTimestamp = String.Empty;
 }
Beispiel #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);
            }
            TDescMsId castObj = (TDescMsId)obj;

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