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

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