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