TASK: Add language to yaml front matter (#1806)

This commit is contained in:
Ilkka Seppälä 2021-07-25 14:58:54 +03:00 committed by GitHub
parent 3f654ab0c8
commit d36efdbc7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,11 +4,15 @@ title: Domain Model
folder: domain-model folder: domain-model
permalink: /patterns/domain-model/ permalink: /patterns/domain-model/
categories: Architectural categories: Architectural
language: en
tags: tags:
- Domain - Domain
--- ---
## Intent ## Intent
Domain model pattern provides an object-oriented way of dealing with complicated logic. Instead of having one procedure that handles all business logic for a user action there are multiple objects and each of them handles a slice of domain logic that is relevant to it. Domain model pattern provides an object-oriented way of dealing with complicated logic. Instead of having one procedure that handles all business logic for a user action there are multiple objects and each of them handles a slice of domain logic that is relevant to it.
## Explanation ## Explanation
Real world example Real world example