public ObjHistC(ObjHistC rhs) { this.lnHistGuidValue = rhs.lnHistGuidValue; this.lnTimeStampUTCValue = rhs.lnTimeStampUTCValue; this.lnObjGuidValue = rhs.lnObjGuidValue; this.lnUserNameValue = rhs.lnUserNameValue; this.lnTimeStampLocalValue = rhs.lnTimeStampLocalValue; this.lnWorkStationValue = rhs.lnWorkStationValue; }
public override void write(Object obj1, BOutput bout1, long version) { ObjHistC obj = (ObjHistC)obj1; BOutputBin bout = (BOutputBin)bout1; BBufferBin bbuf = bout.bbuf; // checkpoint byps.gen.cs.PrintContext:494 bbuf.putInt(obj.lnHistGuid); // checkpoint byps.gen.cs.PrintContext:494 bbuf.putInt(obj.lnObjGuid); // checkpoint byps.gen.cs.PrintContext:494 bbuf.putInt(obj.lnTimeStampLocal); // checkpoint byps.gen.cs.PrintContext:494 bbuf.putInt(obj.lnTimeStampUTC); // checkpoint byps.gen.cs.PrintContext:494 bbuf.putInt(obj.lnUserName); // checkpoint byps.gen.cs.PrintContext:494 bbuf.putInt(obj.lnWorkStation); }
public override Object read(Object obj1, BInput bin1, long version) { BInputBin bin = (BInputBin)bin1; ObjHistC obj = (ObjHistC)(obj1 != null ? obj1 : bin.onObjectCreated(new ObjHistC())); BBufferBin bbuf = bin.bbuf; // checkpoint byps.gen.cs.PrintContext:449 obj.lnHistGuid = bbuf.getInt(); // checkpoint byps.gen.cs.PrintContext:449 obj.lnObjGuid = bbuf.getInt(); // checkpoint byps.gen.cs.PrintContext:449 obj.lnTimeStampLocal = bbuf.getInt(); // checkpoint byps.gen.cs.PrintContext:449 obj.lnTimeStampUTC = bbuf.getInt(); // checkpoint byps.gen.cs.PrintContext:449 obj.lnUserName = bbuf.getInt(); // checkpoint byps.gen.cs.PrintContext:449 obj.lnWorkStation = bbuf.getInt(); return(obj); }