12 lines
395 B
C#
12 lines
395 B
C#
namespace Kreta.Framework.Collections.Generic
|
|
{
|
|
public interface IEntityCollectionDA<CollectionEntityType>
|
|
where CollectionEntityType : Kreta.Framework.Entities.Entity
|
|
{
|
|
void LoadCollection(IAssociatedEntityCollection<CollectionEntityType> collection);
|
|
|
|
void AddItem(CollectionEntityType entity);
|
|
|
|
void DeleteItem(CollectionEntityType entity);
|
|
}
|
|
}
|