namespace Kreta.Framework.Collections.Generic { public interface IEntityCollectionDA where CollectionEntityType : Kreta.Framework.Entities.Entity { void LoadCollection(IAssociatedEntityCollection collection); void AddItem(CollectionEntityType entity); void DeleteItem(CollectionEntityType entity); } }