示例#1
0
 public void GetTempData()
 {
     this.id = TempData.id;
     this.TransformMethod     = TempData.TransformMethod;
     this.SourceChannelInfo   = TempData.SourceChannelInfo;
     this.DigitRransducerInfo = TempData.DigitRransducerInfo;
     this.Code = TempData.Code;
     this.T_AbstractChannelInfo_Code = TempData.T_AbstractChannelInfo_Code;
     TempData = null;
 }
示例#2
0
 public void SaveTempData()
 {
     TempData    = new T1_DigitRransducerOutChannelInfo();
     TempData.id = this.id;
     TempData.TransformMethod     = this.TransformMethod;
     TempData.DigitRransducerInfo = this.DigitRransducerInfo;
     TempData.SourceChannelInfo   = this.SourceChannelInfo;
     TempData.Code = this.Code;
     TempData.T_AbstractChannelInfo_Code = this.T_AbstractChannelInfo_Code;
 }