Top "Service-layer" questions

A Service Layer represents one application boundary and consists of a set of available operations from the perspective of interfacing client layers.

Should ServiceStack be the service layer in an MVC application or should it call the service layer?

I'm creating an MVC website and also intend to create a web API for use both within the website and …

asp.net-mvc asp.net-web-api servicestack service-layer
Injecting a service into another service

I have an MVC project which has two services an OrganisationService and an AgreementService, my problem is that some of …

c# asp.net-mvc dependency-injection service-layer
Designing service layer classes in PHP

I was recently introduced to service layers by Jani Hartikainen in a discussion about how to best handle form data …

php model-view-controller service-layer
Domain Model and Service Layer patterns in P of EAA

In Patterns of Enterprise Application Architecture, Martin Fowler talks about two patterns for organizing Domain Logic: Domain Model and Service …

design-patterns service-layer architectural-patterns anemic-domain-model