public void CopyTo(BasSequence obj) { obj.ID = this.ID; obj.SeqName = this.SeqName; obj.FAMILY = this.FAMILY; obj.DigitalLen = this.DigitalLen; obj.DigitalType = this.DigitalType; obj.DigitalTypeMemo = this.DigitalTypeMemo; obj.IncreaseMode = this.IncreaseMode; obj.IncreaseModeMemo = this.IncreaseModeMemo; obj.CurrentNo = this.CurrentNo; obj.BU = this.BU; obj.SITE = this.SITE; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; obj.MEMO = this.MEMO; }
public Object Clone() { BasSequence obj = new BasSequence(); obj.ID = this.ID; obj.SeqName = this.SeqName; obj.FAMILY = this.FAMILY; obj.DigitalLen = this.DigitalLen; obj.DigitalType = this.DigitalType; obj.DigitalTypeMemo = this.DigitalTypeMemo; obj.IncreaseMode = this.IncreaseMode; obj.IncreaseModeMemo = this.IncreaseModeMemo; obj.CurrentNo = this.CurrentNo; obj.BU = this.BU; obj.SITE = this.SITE; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; obj.MEMO = this.MEMO; return(obj); }