kreta/Framework/Collections/Generic/IAssociatedEntityCollection.cs
2024-03-13 00:33:46 +01:00

12 lines
306 B
C#

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();
}
}