Example #1
0
        private T_Report_Product_Actual toReportProductActual()
        {
            var rpa = new T_Report_Product_Actual();

            rpa.ConductorStruct    = this.Actual_ConductorStruct;
            rpa.EdgeDiaAvgFooter   = this.Actual_EdgeDiaAvgFooter;
            rpa.EdgeDiaAvgHeader   = this.Actual_EdgeDiaAvgHeader;
            rpa.EdgeDiaMinFooter   = this.Actual_EdgeDiaMinFooter;
            rpa.EdgeDiaMinHeader   = this.Actual_EdgeDiaMinHeader;
            rpa.Resistance         = this.Actual_Resistance;
            rpa.SheathAvgFooter    = this.Actual_SheathAvgFooter;
            rpa.SheathAvgHeader    = this.Actual_SheathAvgHeader;
            rpa.SheathMinFooter    = this.Actual_SheathMinFooter;
            rpa.SheathMinHeader    = this.Actual_SheathMinHeader;
            rpa.VerticalDiaFooter1 = this.Actual_VerticalDiaFooter1;
            rpa.VerticalDiaFooter2 = this.Actual_VerticalDiaFooter2;
            rpa.VerticalDiaHeader1 = this.Actual_VerticalDiaHeader1;
            rpa.VerticalDiaHeader2 = this.Actual_VerticalDiaHeader2;
            rpa.VoltageTest        = this.Actual_VoltageTest;
            return(rpa);
        }
Example #2
0
 public void updateReportActual(T_Report_Product_Actual pactual)
 {
     if (pactual == null)
     {
         return;
     }
     this.Actual_ConductorStruct    = pactual.ConductorStruct;
     this.Actual_EdgeDiaAvgFooter   = pactual.EdgeDiaAvgFooter;
     this.Actual_EdgeDiaAvgHeader   = pactual.EdgeDiaAvgHeader;
     this.Actual_EdgeDiaMinFooter   = pactual.EdgeDiaMinFooter;
     this.Actual_EdgeDiaMinHeader   = pactual.EdgeDiaMinHeader;
     this.Actual_Resistance         = pactual.Resistance;
     this.Actual_SheathAvgFooter    = pactual.SheathAvgFooter;
     this.Actual_SheathAvgHeader    = pactual.SheathAvgHeader;
     this.Actual_SheathMinFooter    = pactual.SheathMinFooter;
     this.Actual_SheathMinHeader    = pactual.SheathMinHeader;
     this.Actual_VerticalDiaFooter1 = pactual.VerticalDiaFooter1;
     this.Actual_VerticalDiaFooter2 = pactual.VerticalDiaFooter2;
     this.Actual_VerticalDiaHeader1 = pactual.VerticalDiaHeader1;
     this.Actual_VerticalDiaHeader2 = pactual.VerticalDiaHeader2;
     this.Actual_VoltageTest        = pactual.VoltageTest;
 }