/// <summary>
 /// Adds the specified <see cref="DataStore"/> to the <see cref="ConfigurationElementCollection"/>.
 /// </summary>
 /// <param name="dataStore">The <see cref="DataStore"/> to add.</param>
 public void Add(DataStore dataStore)
 {
     BaseAdd(dataStore);
 }
 /// <summary>
 /// Removes the specified <see cref="DataStore"/> from the <see cref="ConfigurationElementCollection"/>.
 /// </summary>
 /// <param name="dataStore">The <see cref="DataStore"/> to remove.</param>
 public void Remove(DataStore dataStore)
 {
     BaseRemove(GetElementKey(dataStore));
 }