//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; }
//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; }
public ChainRequest(ChainRequestBase copy) : base(copy) { }