Beispiel #1
0
 public CreateObjectStep(CreateObjectStep src)
     : base(src)
 {
     ObjectType = src.ObjectType;
     ParentObjectType = src.ParentObjectType;            
 }
Beispiel #2
0
 private CreateObjectStep copyCreateObjectStep(CreateObjectStep src)
 {
     var cos = new CreateObjectStep(src);
     cos.LoadInitItems(src.InitItems);
     return cos;
 }