/// <summary>
 /// Adds a collection of <see cref="ILimit"/> to the set of limits included in the composition
 /// </summary>
 /// <param name="limit">
 /// The <see cref="ILimit"/>s to add
 /// </param>
 public void AddLimits(ICollection <ILimit> newLimits)
 {
     limits.AddRange(newLimits);
 }