ddd-service Questions

2

Example: I have two bounded contexts Exams and Courses. The Exams context has a Student entity that has information about the students to take an exam. And the Courses context has a teachers entity...
Quadruped asked 28/5, 2019 at 12:17

4

I am in the process of refactoring an application and am trying to figure out where certain logic should fit. For example, during the registration process I have to check if a user exists based upo...
Malissa asked 11/1, 2018 at 5:32

2

Solved

If we consider a standard persistence repository, the solution is easy. We put the IStuffRepository in the Domain Layer, and the StuffRepositoryImplementation in the Infrastructure Layer. But what...
Coalfield asked 30/5, 2017 at 14:4

1

Solved

My understanding of the application services are that they link between the domain and the user interface together. In other words, they serve the controller to perform operations on the domain. ...

2

I need to know about how to use shared value objects in DDD Eg? If i have two aggregates roots called Registration and Admission, both this aggregates consuming a value object called Address. even...
Ephemeris asked 3/7, 2014 at 7:21

2

Solved

In Domain Driven Design, domain services should contain operations that do not naturally belong inside an entity. I've had the habit to create one service per entity and group some methods inside ...
Funnelform asked 19/7, 2013 at 12:20

3

Solved

I've been studying onion architecture for a couple of days. I understand that dependencies should always go toward the center and how to use dependency injection to accomplish this. But I have a co...

1

Solved

I have a tree of Zone objects: class Zone { protected Zone $parent; public function __construct(Zone $parent) { $this->parent = $parent; } } There are no children nor descendants property...
1

© 2022 - 2024 — McMap. All rights reserved.