protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); var bootstrapper = new Bootstrapper(); bootstrapper.Run(); }
public Startup(IObjectContainer objectContainer) { var containerAdapter = new ObjectContainerAdapter(objectContainer); var bootstrapper = new Bootstrapper(containerAdapter) .Use(new RegisterCompositionModulesMiddleware<Bootstrapper>()); bootstrapper.Initialize(); }
public App() { Bootstrapper bootStrapper = new Bootstrapper(); bootStrapper.Run(); }