/// <summary>
 /// Saves settings to settings store
 /// </summary>
 public void Save()
 {
     SetCrmConnections(CrmConnections);
     _settingsStore.SetGuid(CollectionPath, SelectedConnectionIdPropertyName, SelectedConnectionId);
     if (ConfigurationVersion != null)
     {
         _settingsStore.SetString(CollectionPath, SettingsVersionPropertyName, ConfigurationVersion);
     }
 }
Exemple #2
0
 /// <summary>
 /// Saves settings to settings store
 /// </summary>
 public void Save()
 {
     SetCrmConnections(CrmConnections);
     _settingsStore.SetGuid(CollectionPath, SelectedConnectionIdPropertyName, SelectedConnectionId);
 }