コード例 #1
0
ファイル: T1_BaseChannelInfo.cs プロジェクト: zjbinya/hudcopy
 public void GetTempData()
 {
     this.id = TempData.id;
     this.TransformMethod   = TempData.TransformMethod;
     this.SourceChannelInfo = TempData.SourceChannelInfo;
     this.Code = TempData.Code;
     this.T_AbstractChannelInfo_Code = TempData.T_AbstractChannelInfo_Code;
     TempData = null;
 }
コード例 #2
0
ファイル: T1_BaseChannelInfo.cs プロジェクト: zjbinya/hudcopy
 public void SaveTempData()
 {
     TempData    = new T1_AnalogRransducerOutChannelInfo();
     TempData.id = this.id;
     TempData.TransformMethod   = this.TransformMethod;
     TempData.SourceChannelInfo = this.SourceChannelInfo;
     TempData.Code = this.Code;
     TempData.T_AbstractChannelInfo_Code = this.T_AbstractChannelInfo_Code;
 }