Exemple #1
0
 internal HotSwapServiceConfiguration(
     IServiceCollection services,
     ScopeLevel level)
 {
     this.services = services;
     this.config   = new HotSwapInternalConfiguration <TInterface>(services, level);
 }
 public HotSwapServiceFactory(
     HotSwapInternalConfiguration <TInterface> config,
     ServiceResolverFactory resolverFactory,
     IServiceProvider serviceProvider)
 {
     this.config          = config;
     this.resolverFactory = resolverFactory;
     this.serviceProvider = serviceProvider;
 }