public DoNotCallBaseForCallHandler(ICallSpecificationFactory callSpecificationFactory, ICallBaseConfiguration callBaseConfig, MatchArgs matchArgs)
 {
     _callSpecificationFactory = callSpecificationFactory;
     _callBaseConfig           = callBaseConfig;
     _matchArgs = matchArgs;
 }
 public DoNotCallBaseForCallHandler(ICallSpecificationFactory callSpecificationFactory, ICallBaseConfiguration callBaseConfig, MatchArgs matchArgs)
 {
     _callSpecificationFactory = callSpecificationFactory ?? throw new ArgumentNullException(nameof(callSpecificationFactory));
     _callBaseConfig           = callBaseConfig ?? throw new ArgumentNullException(nameof(callBaseConfig));
     _matchArgs = matchArgs ?? throw new ArgumentNullException(nameof(matchArgs));
 }
Пример #3
0
 public ReturnFromBaseIfRequired(ICallBaseConfiguration config)
 {
     _config = config ?? throw new ArgumentNullException(nameof(config));
 }
 public ReturnFromBaseIfRequired(ICallBaseConfiguration config)
 {
     _config = config;
 }