public JT_WorkTicketHistory(JT_WorkTicketHistory workTicket)
 {
     this.SalesOrderNo               = workTicket.SalesOrderNo;
     this.WTNumber                   = workTicket.WTNumber;
     this.WTStep                     = workTicket.WTStep;
     this.Description                = workTicket.Description;
     this.HdrContactCode             = workTicket.HdrContactCode;
     this.DtlRepairItemCode          = workTicket.DtlRepairItemCode;
     this.DtlInternalSerialNo        = workTicket.DtlInternalSerialNo;
     this.HdrServiceContractCode     = workTicket.HdrServiceContractCode;
     this.StatusCode                 = workTicket.StatusCode;
     this.DtlWarrantyRepair          = workTicket.DtlWarrantyRepair;
     this.DtlMfgSerialNo             = workTicket.DtlMfgSerialNo;
     this.DtlCoveredOnContract       = workTicket.DtlCoveredOnContract;
     this.DtlPreventitiveMaintenance = workTicket.DtlPreventitiveMaintenance;
     this.ActivityCode               = workTicket.ActivityCode;
     this.DtlCoverageExceptionCode   = workTicket.DtlCoverageExceptionCode;
 }
예제 #2
0
        public JT_WorkTicketHistory(JT_WorkTicketHistory workTicket)
        {
            this.SalesOrderNo           = workTicket.SalesOrderNo;
            this.WTNumber               = workTicket.WTNumber;
            this.WTStep                 = workTicket.WTStep;
            this.Description            = workTicket.Description;
            this.HdrContactCode         = workTicket.HdrContactCode;
            this.DtlRepairItemCode      = workTicket.DtlRepairItemCode;
            this.DtlInternalSerialNo    = workTicket.DtlInternalSerialNo;
            this.HdrServiceContractCode = workTicket.HdrServiceContractCode;
            this.StatusCode             = workTicket.StatusCode;
            this.DtlWarrantyRepair      = workTicket.DtlWarrantyRepair;
            this.DtlMfgSerialNo         = workTicket.DtlMfgSerialNo;
            this.DtlCoveredOnContract   = workTicket.DtlCoveredOnContract;
            // dch rkl 11/30/2016 Field was spelled incorrectly
            //this.DtlPreventitiveMaintenance = workTicket.DtlPreventitiveMaintenance;
            this.DtlPreventiveMaintenance = workTicket.DtlPreventiveMaintenance;
            this.ActivityCode             = workTicket.ActivityCode;
            this.DtlCoverageExceptionCode = workTicket.DtlCoverageExceptionCode;

            // dch rkl 12/01/2016
            this.StatusDate = workTicket.StatusDate;
        }