https://github.com/urunov/domain-driven-design
https://github.com/urunov/domain-driven-design
ddd ddd-architecture ddd-example ddd-patterns domin-driven
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/urunov/domain-driven-design
- Owner: Urunov
- Created: 2021-06-21T00:59:54.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-21T02:13:59.000Z (almost 4 years ago)
- Last Synced: 2025-01-25T07:27:37.646Z (3 months ago)
- Topics: ddd, ddd-architecture, ddd-example, ddd-patterns, domin-driven
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Domain-Driven-Design
**An aggregate** is an encapsulation of entities and value objects (domain objects) which conceptually belong together.It also contains a set of operations which those **domain objects** can be operated on.
As a concrete example, an aggregate might be a Car, **where the encapsulated domain objects** might be Engine, Wheels, BodyColour and Lights; similarly in the context of manufacturing a car, operations might be: PaintBody, InstallWheel, InstallEngine and InstallLight and Ship.