private void SelectCountryCommand(ServersByCountryViewModel serverVm)
 {
     this._appSettings.AutoConnectMode   = "country";
     this._appSettings.AutoConnectTarget = serverVm.Country.get_Code();
     EventAggregatorExtensions.PublishOnUIThread(this._eventAggregator, new AutoConnectTargetChangedMessage());
     this.GoBackCommand();
 }
 public void SelectCountry(ServersByCountryViewModel serverVm)
 {
     this._autoConnectManager.SetAutoConnectToCountry(serverVm.Country);
     this.SwitchToSettings();
 }