0
FlexSolution created
I have a basic question about the repository and the managers.
In some services like OriganizationUnitAppService you use the manager as well as the repository. Then there are also managers that you use in managers.
Can you explain your rule on how to determine when to use a manager and when to use the repository directly?
Thanks.
2 Answer(s)
-
0
The repository contains only insert, delete, update, get and so on operations on the entity.
managers may implement some business logic, of course, it is free to use the repository and other services.
https://aspnetboilerplate.com/Pages/Documents/Domain-Services
-
0
This issue is closed because of no recent activity. Please open a new issue if you are still having this problem.