示例#1
0
 //This SHOULD be done with the mapper but I don't want the dependency
 public ChainRequestBase(ChainRequestBase copy)
 {
     mergeLock = copy.mergeLock; //Is this safe? Is it the "same" object?
     mergeList = copy.mergeList;
     fields    = copy.fields;
     chains    = copy.chains;
 }
示例#2
0
 //This SHOULD be done with the mapper but I don't want the dependency
 public ChainRequestBase(ChainRequestBase copy)
 {
     mergeLock          = copy.mergeLock; //Is this safe? Is it the "same" object?
     mergeList          = copy.mergeList;
     fields             = copy.fields;
     chains             = copy.chains;
     viewableIdentifier = copy.viewableIdentifier;
     name = copy.name;
 }
示例#3
0
 public ChainRequest(ChainRequestBase copy) : base(copy)
 {
 }