public TClsDetailMs() { id = new TClsDetailMsId(); iClsDetailDesc = String.Empty; iInqItem = String.Empty; iEntryDate = DateTime.MinValue; iUpdDate = DateTime.MinValue; iUpdTimestamp = String.Empty; }
/// <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)); }