Iโm kind of new to the whole domain-oriented statement, and I would love it if you could tell me where, in your opinion, there is such a service method as at the application or domain level:
List<Children> getChildrenByParent(Parent parent, int offset, int count) {
return repository.listChildrenByParent(Parent parent, int offset, int count);
}
I also wonder if it is acceptable to do things when there are huge collections of objects in the model and / or when I need to filter things efficiently.
thank
Piotr source
share