Beispiel #1
0
 public void CopyTo(UnsurenessHistory obj)
 {
     obj.ID               = this.ID;
     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;
 }
Beispiel #2
0
        public Object Clone()
        {
            UnsurenessHistory obj = new UnsurenessHistory();

            obj.ID = this.ID;

            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);
        }