I have two questions - :

1) I have to provide wcf wrapper around my ddd project. So , do the below design is correct ?

Mvc -> ServiceLayer(Wcf) -> app -> domain -> infra

Or App service will act as wcf service.

2) I know that I have to expose dto's in service layer. So, what ever service method's i expose in domain services and app services, do i have to create the same name method service in service layer too and call domain service and app service from service layer.

link|improve this question

14% accept rate
feedback

1 Answer

It's always hard answer this kind of question since it really depends by your needs and requirements.

For my point of view there is not "a best solution" but just a good solution that fit with your requirement.

Anyway in general what you are doing is correct but you have to make sure it fit with your needs: sometime we are obsessed with following the best practice the we risk to add too many layer to do something that could be done by 2 :-)

The only thing I can say is that you can't expose DTO as it is just a way to transfer objects (from a very high point of view it could be compared to a protocol) but it doesn’t say anything about what object are you exposing. You could create POCO objects instead and just expose them but in this case you will need an "Assembler" layer that will be used from the service layer to create the POCO objects against your "domain model". Both the assembler and the MVC layer as to know the POCO objects.

I hope it makes sense

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.