public OptionsControl()
        {
            InitializeComponent();
            string registryMasterKey = Registry.CurrentUser.Name + "\\Software\\SSMScripter";

            _scripterConfigStorage = new ScripterConfigRegistryStorage(registryMasterKey);
            _runConfigStorage      = new RunConfigRegistryStorage(registryMasterKey);
        }
 public RunContextProvider(IHostContext hostCtx, IRunConfigStorage configSrc)
 {
     _hostCtx   = hostCtx;
     _configSrc = configSrc;
 }