12 lines
306 B
C#
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();
|
|
}
|
|
}
|