public SubstituteStateFactory(ICallSpecificationFactory callSpecificationFactory,
                               ICallInfoFactory callInfoFactory,
                               IAutoValueProvidersFactory autoValueProvidersFactory)
 {
     _callSpecificationFactory  = callSpecificationFactory;
     _callInfoFactory           = callInfoFactory;
     _autoValueProvidersFactory = autoValueProvidersFactory;
 }
Exemple #2
0
 public SubstituteStateFactory(ICallSpecificationFactory callSpecificationFactory,
                               ICallInfoFactory callInfoFactory,
                               IAutoValueProvidersFactory autoValueProvidersFactory)
 {
     _callSpecificationFactory  = callSpecificationFactory ?? throw new ArgumentNullException(nameof(callSpecificationFactory));
     _callInfoFactory           = callInfoFactory ?? throw new ArgumentNullException(nameof(callInfoFactory));
     _autoValueProvidersFactory = autoValueProvidersFactory ?? throw new ArgumentNullException(nameof(autoValueProvidersFactory));
 }
Exemple #3
0
 public SubstituteStateFactory(SequenceNumberGenerator sequenceNumberGenerator,
                               ICallSpecificationFactory callSpecificationFactory,
                               ICallInfoFactory callInfoFactory,
                               IAutoValueProvidersFactory autoValueProvidersFactory)
 {
     _sequenceNumberGenerator   = sequenceNumberGenerator;
     _callSpecificationFactory  = callSpecificationFactory;
     _callInfoFactory           = callInfoFactory;
     _autoValueProvidersFactory = autoValueProvidersFactory;
 }