public void CopyTo(UnsurenessProduct obj) { obj.PSN = this.PSN; obj.MSN = this.MSN; obj.WorkOrder = this.WorkOrder; obj.FailCode = this.FailCode; obj.FailMemo = this.FailMemo; obj.STATUS = this.STATUS; obj.StationName = this.StationName; obj.QUANTITY = this.QUANTITY; obj.PartsdrawingCode = this.PartsdrawingCode; obj.ProductName = this.ProductName; obj.BatchNumber = this.BatchNumber; obj.MEMO = this.MEMO; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; }
public Object Clone() { UnsurenessProduct obj = new UnsurenessProduct(); obj.PSN = this.PSN; obj.MSN = this.MSN; obj.WorkOrder = this.WorkOrder; obj.FailCode = this.FailCode; obj.FailMemo = this.FailMemo; obj.STATUS = this.STATUS; obj.StationName = this.StationName; obj.QUANTITY = this.QUANTITY; obj.PartsdrawingCode = this.PartsdrawingCode; obj.ProductName = this.ProductName; obj.BatchNumber = this.BatchNumber; obj.MEMO = this.MEMO; obj.CreatedDate = this.CreatedDate; obj.UpdatedDate = this.UpdatedDate; obj.UpdatedBy = this.UpdatedBy; return(obj); }