コード例 #1
0
 public void GetTempData()
 {
     this.id = TempData.id;
     this.InSignalCategory  = TempData.InSignalCategory;
     this.InSignalCode      = TempData.InSignalCode;
     this.SlotNum           = TempData.SlotNum;
     this.SlotName          = TempData.SlotName;
     this.UploadIntevalTime = TempData.UploadIntevalTime;
     this.IsInput           = TempData.IsInput;
     this.Unit    = TempData.Unit;
     this.Version = TempData.Version;
     this.Code    = TempData.Code;
     this.T_WireMatchingCard_Code = TempData.T_WireMatchingCard_Code;
     TempData = null;
 }
コード例 #2
0
 public void SaveTempData()
 {
     TempData    = new T1_AbstractSlotInfo();
     TempData.id = this.id;
     TempData.InSignalCategory  = this.InSignalCategory;
     TempData.InSignalCode      = this.InSignalCode;
     TempData.SlotNum           = this.SlotNum;
     TempData.SlotName          = this.SlotName;
     TempData.UploadIntevalTime = this.UploadIntevalTime;
     TempData.IsInput           = this.IsInput;
     TempData.Unit    = this.Unit;
     TempData.Version = this.Version;
     TempData.Code    = this.Code;
     TempData.T_WireMatchingCard_Code = this.T_WireMatchingCard_Code;
 }