public GenericHostApplicationBuilder(IModuleManager moduleManager, IApplicationBootManager bootManager)
     : base(moduleManager)
 {
     _moduleManager = moduleManager;
     _bootManager   = bootManager;
 }
 public GenericHostApplication(IApplicationBootManager bootManager)
 {
     _bootManager = bootManager;
 }
Beispiel #3
0
 public WebHostApplcation(IApplicationBootManager bootManager)
 {
     _bootManager = bootManager;
 }
 public VerboseApplicationBootManager(IApplicationBootManager bootManager, ILogger logger)
 {
     _bootManager = bootManager;
     _logger      = logger;
 }