///<summary>
 /// Creates a new instance of <see cref="ReflectionActivator" />.
 ///</summary>
 ///<param name="implementationType">The implementation type.</param>
 ///<param name="constructorSelector">The constructor selector.</param>
 ///<param name="argumentCollector">The argument collector.</param>
 internal ReflectionActivator(Type implementationType, IConstructorSelector constructorSelector, IArgumentCollector argumentCollector)
 {
     this._implementationType = implementationType;
     this._constructorSelector = constructorSelector;
     this._argumentCollector = argumentCollector;
 }
Exemple #2
0
 internal ReflectionActivator(Type implementationType, IConstructorSelector constructorSelector, IArgumentCollector argumentCollector)
 {
     this._implementationType  = implementationType;
     this._constructorSelector = constructorSelector;
     this._argumentCollector   = argumentCollector;
 }