AyCode.Core/AyCode.Interfaces/Entities
Loretta fbe142c6f3 Add detailed README.md files for all projects and folders
Added comprehensive README.md documentation to every project and subfolder in the solution. Each README describes the purpose, key files, structure, dependencies, and design patterns for its area. This improves codebase navigability and maintainability, and includes a maintenance note to keep docs in sync with future code changes.
2026-03-28 17:24:56 +01:00
..
IAcSoftRemoveEntity.cs IAcSoftRemoveEntity 2024-11-13 10:58:39 +01:00
IAcSoftRemoveEntityGuid.cs IAcSoftRemoveEntity 2024-11-13 10:58:39 +01:00
IAcSoftRemoveEntityInt.cs IAcSoftRemoveEntity 2024-11-13 10:58:39 +01:00
IEntity.cs improvemets, fixes, etc... 2024-06-02 10:48:37 +02:00
IEntityGuid.cs interfaces restructuring step 1 2023-11-27 13:57:29 +01:00
IEntityInt.cs interfaces restructuring step 1 2023-11-27 13:57:29 +01:00
README.md Add detailed README.md files for all projects and folders 2026-03-28 17:24:56 +01:00

README.md

Entities

Core entity interfaces that define primary key contracts and soft-delete behavior for all domain entities.

Key Files

  • IEntity.cs — Root entity interface extending IAcSerializableToJson, with a generic IEntity<TPKey> variant for typed primary keys.
  • IEntityGuid.cs — Entity with a Guid primary key (IEntity<Guid>).
  • IEntityInt.cs — Entity with an int primary key (IEntity<int>).
  • IAcSoftRemoveEntity.cs — Adds a Deleted boolean flag for soft-delete support.
  • IAcSoftRemoveEntityInt.cs — Soft-delete entity with int key.
  • IAcSoftRemoveEntityGuid.cs — Soft-delete entity with Guid key.

LLM Maintenance: If you modify code in this folder, update this README to reflect the changes. If you notice the README content does not match the current code, automatically update the README to match the code.