Exemple #1
0
        public override void OnLoaded()
        {
            Core.Helpers.Dependancy_Helpers.LoadDependancies();

            var bootstrapper = new Bootstrapper_Model();

            bootstrapper.Initialize();

            Client = bootstrapper.Container.Resolve <IClient>();
            Client.Load();
        }
Exemple #2
0
        public Result OnStartup(UIControlledApplication application)
        {
            UIApp = application;

            Core.Helpers.Dependancy_Helpers.LoadDependancies();

            var bootstrapper = new Bootstrapper_Model();

            bootstrapper.InitializeRVT(application);

            Client = bootstrapper.Container.Resolve <IClientRVT>();
            Client.Load(application);

            return(Result.Succeeded);
        }