Does application services belong to domain layer or application layer?

1.1k Views Asked by At

I have a N-Layered Winforms application with 4 layers as follows:

Presentation Layer

Application Layer

Domain Layer

Infrastructure Layer

My Application Layer has a Product Services class which is used for all repository related actions for Products.

Does the interface file for the Product Services class belong in the Application Layer or Domain Layer? I ask because the interface file for my repositories is defined in the Domain Layer even though they are implemented in the Infrastructure Layer.

Thanks in advance.

2

There are 2 best solutions below

0
On BEST ANSWER

Service concept can belong to any layer. If you ask for application services, then these should live in the application layer.

In the other hand, if these services are the ones directly accessing the domain, then they're still domain. That is, I would expect to find both a service interface and one or more implementations in any project prefixed with Domain.

BTW, the project has nothing to do with software layers. It's just an organizational unit to group files by some criteria. The most important point is your flow should work with inversion of control in mind to glue layers.

2
On

With DDD, is usually recommended to use Dependency Inversion (the D in SOLID), so the tree of dependencies should be

                      Domain Layer
                            |
                           / \ 
                          /   \
        Presentation Layer     Infrastructure Layer

So the Presentation and Infrastructure "layers" depend on your domain, and not the other way around (the generic version of this is also know as Hexagonal Architecture or Ports and Adapters)

And the Application Layer is indeed part of your domain, as it defines how use cases are supposed to work. I've never used (or seen) an application layer in an application, but what I've done is to put the Application Services in a different package inside the same artefact (the terminology here might be a bit different as I come from a Java background).