Esempio n. 1
0
 public IDependencyResolverScope CreateChildScope()
 {
     var childScope = new DependencyResolverScope(_resolvableTypes.Value, _emptyScopedInstances);
     Track(childScope);
     return childScope;
 }
Esempio n. 2
0
 public IDependencyResolverScope CreateChildScope()
 {
     var childScope = new DependencyResolverScope(_resolvableTypes.Value, _additionalComponents.ToDictionary(kvp => kvp.Key, kvp => kvp.Value));
     Track(childScope);
     return childScope;
 }