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

            var installer = new TestBootStrapperApp();
            var a = new VirtoCommerce.Bootstrapper.UI.Bootstrapper();
            a.Run();

            //var exitCode = new VirtoCommerce.Bootstrapper.UI.App(new Installer()).Run();
        }
예제 #2
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var installer = new TestBootStrapperApp();
            var a         = new VirtoCommerce.Bootstrapper.UI.Bootstrapper();

            a.Run();

            //var exitCode = new VirtoCommerce.Bootstrapper.UI.App(new Installer()).Run();
        }
예제 #3
0
 protected override void OnStartup(StartupEventArgs e)
 {
     base.OnStartup(e);
     var bootstrapper = new Bootstrapper(_installer);
     bootstrapper.Run();
 }