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

            Bootstrapper bootStrapper = new Bootstrapper();
            bootStrapper.Run();
        }
Beispiel #2
0
 public App()
 {
     Bootstrapper bootStrapper = new Bootstrapper();
     bootStrapper.Run();
 }
Beispiel #3
0
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            Bootstrapper bootstrapper = new Bootstrapper();

            bootstrapper.Run();
        }
Beispiel #4
0
        public App()
        {
            Bootstrapper bootStrapper = new Bootstrapper();

            bootStrapper.Run();
        }
Beispiel #5
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     Bootstrapper bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }