init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
21
Framework/Collections/Generic/IEntityCollection.cs
Normal file
21
Framework/Collections/Generic/IEntityCollection.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Kreta.Framework.Collections.Generic
|
||||
{
|
||||
public interface IEntityCollection<EntityType> : IList<EntityType>
|
||||
where EntityType : Kreta.Framework.Entities.Entity
|
||||
{
|
||||
void DeleteAll(bool logikai = true);
|
||||
|
||||
void DeleteAll(bool runHandler, bool logikai = true);
|
||||
|
||||
void DeleteMany(IList<int> ids, bool logikai = true);
|
||||
|
||||
void CascadeDeleteAll(bool logikai = true);
|
||||
|
||||
void CascadeDeleteAll(bool runHandler, bool logikai = true);
|
||||
|
||||
EntityType FindEntityById(int entityId);
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue