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