/// <summary>
        ///   Default constructor of the package.
        ///   Inside this method you can place any initialization code that does not require 
        ///   any Visual Studio service because at this point the package object is created but 
        ///   not sited yet inside Visual Studio environment. The place to do all the other 
        ///   initialization is the Initialize method.
        /// </summary>
        public VisualMutator_VSPackagePackage()
        {
            Trace.WriteLine(
                string.Format(
                    CultureInfo.CurrentCulture, "Entering constructor for: {0}", ToString()));

            
                _bootstrapper = new Bootstrapper(this);
            
        }
Esempio n. 2
0
		public UserViewModel(Bootstrapper botstrapper)
		{
			this.botstrapper = botstrapper;
			ChangeUserCommand = new RelayCommand(OnChangeUser);
		}
Esempio n. 3
0
		public ChangeUserViewModel(Bootstrapper botstrapper)
		{
			_botstrapper = botstrapper;
			Title = "Смена пользователя";
			Password = "";
		}
Esempio n. 4
0
 public static Bootstrapper CreateBootstrapper()
 {
     var bootstrapper = new Bootstrapper();
     return bootstrapper.RunStartupConfiguration();
 }