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