public VerboseHostBootManager(IHostBootManager bootManager, IModuleManager moduleManager, IBootSequenceFactory bootSequenceFactory, ILogger logger)
 {
     _bootManager         = bootManager;
     _moduleManager       = moduleManager;
     _bootSequenceFactory = bootSequenceFactory;
     _logger = logger;
 }
Esempio n. 2
0
 public SImplHost(IHost host, IHostBootManager bootManager)
 {
     _host        = host;
     _bootManager = bootManager;
 }
Esempio n. 3
0
 public SImplHostBuilder(IHostBuilder hostBuilder, IModuleManager moduleManager, IHostBootManager bootManager)
 {
     _hostBuilder   = hostBuilder;
     _moduleManager = moduleManager;
     _bootManager   = bootManager;
 }