I have a scenario that I need to fetch a list of Active Employees with Entity Framework and display them on the screen (I need to convert to DTOs before displaying - which I do by the Application layer).
For a Domain-Driven Design (DDD) scenario, there are Application , Domain layers, and Infra ... I am in doubt in this scope. Domain services are created when logic matters to the domain, right? So I could fetch this list directly between Application and Repository , in this way, without creating a service on the Domain layer? Of course, getting a list of assets would be just a LINQ filter, I do not know if I can consider this a business rule ... Who can clarify this question for me? Thank you.