protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); Bootstrapper bs = new Bootstrapper(); bs.Run(); }
public App() { Bootstrapper bs = new Bootstrapper(); bs.Run(this); }
private void Application_Startup(object sender, StartupEventArgs e) { var bootstrapper = new Bootstrapper(new Injector()); bootstrapper.Run(); }
private void Application_Startup(object sender, StartupEventArgs e) { Bootstrapper bootstrapper = new Bootstrapper(); bootstrapper.Run(); }