namespace Kreta.Framework.Collections.Generic
{
    public interface IAssociatedEntityCollection<EntityType> : IEntityCollection<EntityType>
        where EntityType : Kreta.Framework.Entities.Entity
    {
        void Delete(EntityType entity);

        void RemoveAll();

        void Load();
    }
}