/// <summary>
 /// Removes an object instance from the current collection set of items.
 /// </summary>
 public virtual void Remove(LegalTypeBase legalTypeBase)
 {
     InnerRemove(legalTypeBase);
 }
 /// <summary>
 /// Adds a new object instance to the current collection set.
 /// </summary>
 public virtual int Add(LegalTypeBase legalTypeBase)
 {
     return InnerAdd(legalTypeBase);
 }