update dto example

This commit is contained in:
Yisroel Baum 2026-05-25 08:25:42 +03:00
parent 914cbd37a1
commit f58cf050e3
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -15,7 +15,7 @@ intentionally omitted here - update this section as entities land.
- Look at similar entities for reference before writing anything new - Look at similar entities for reference before writing anything new
- Entities: constructor with properties, getters - Entities: constructor with properties, getters
- DTOs: simple data containers for creation (e.g. `CreateSetDto`) - DTOs: simple data containers for creation (e.g. `CreateElementDto`)
- Repositories: interfaces that define data access - Repositories: interfaces that define data access
- Do not write unit tests for concrete repository implementations - Do not write unit tests for concrete repository implementations
(e.g. `Postgres*Repository`). They are exercised by e2e tests. (e.g. `Postgres*Repository`). They are exercised by e2e tests.