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