docs: define repository pattern boundary

This commit is contained in:
AzuTear
2026-06-28 09:48:34 +02:00
parent ed8efda692
commit 170308ba05
8 changed files with 171 additions and 2 deletions
+4
View File
@@ -34,6 +34,10 @@
## Repository Rules
- Use the repository pattern for persistence boundaries.
- Repository interfaces live in {{REPOSITORY_INTERFACE_LOCATION}}.
- Repository implementations live in {{REPOSITORY_IMPLEMENTATION_LOCATION}}.
- Repositories should be domain-specific, not generic CRUD wrappers by default.
- {{REPOSITORY_RULE}}
## Service Rules