示例#1
0
 /// <summary>
 /// Updates all parent references for the operation. Used for serialisation purposes to maintain the parent hierarchy required for propertygrid type converters.
 /// </summary>
 /// <param name="parentBatch">The batch that the operation belongs to.</param>
 public virtual void UpdateParentReferences(Batch parentBatch)
 {
     ParentBatch = parentBatch;
 }
示例#2
0
 public Operation(Batch parentBatch)
 {
     this.parentBatch = parentBatch;
 }