Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public ChainRequest(ChainRequestBase copy) : base(copy)
 {
 }