Example #1
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var bootstrapper = new Bootstrapper();
            bootstrapper.Run();
        }
Example #2
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     Bootstrapper bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }
Example #3
0
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            Bootstrapper bootstrapper = new Bootstrapper();

            bootstrapper.Run();
        }
 public App()
 {
     var bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }
Example #5
0
        public App()
        {
            var bootstrapper = new Bootstrapper();

            bootstrapper.Run();
        }