A Service Layer represents one application boundary and consists of set of available operations from the perspective of interfacing client layers. It encapsulates the application's business logic, controlling transactions and coordinating responses in the implementation of its operations. In ...
15
votes
2answers
2k views
The Purpose of a Service Layer and ASP.NET MVC 2
In an effort to understand MVC 2 and attempt to get my company to adopt it as a viable platform for future development, I have been doing a lot of reading lately. Having worked with ASP.NET pretty ...
14
votes
1answer
2k views
MVC3 App/Service Layer/Repository Layer/POCO Classes/EF4 - Questions!
I am new to this whole design concept, and in reading for the last few weeks I have gathered a lot of information, but it seems scattered and conflicted. Terms are mixed, and I am just having a hard ...
14
votes
3answers
3k views
Difference between Repository and Service Layer?
In OOP Design Patterns, what is the difference between the Repository Pattern and a Service Layer?
I am working on an ASP.NET MVC 3 app, and am trying to understand these design patterns, but my ...
12
votes
6answers
258 views
How should be my Service method signature?
I'm using a Service Layer, and until now I used a ServiceObject (which implements ArrayAccess, Iterator, Countable) but I'm wondering if it's a good ideas.
Would you do:
...
10
votes
4answers
436 views
Fat model / thin controller vs. Service layer
I have been developing enterprise applications for many years using .Net
My apps usually have a domain model containing entities mapping to SQL DB tables.
I use a Repository pattern, Dependency ...
10
votes
7answers
2k views
Service Layer vs Business Layer in architecting web applications?
I know this might sound silly but I am finding it hard to understand the need of a service layer and its differences with business layer.
So, we are using asp.net mvc 2 and have Data Access layer ...
8
votes
2answers
238 views
How should EntityManager be used in a nicely decoupled service layer and data access layer?
Somewhat related to my other question Should raw Hibernate annotated POJO's be returned from the Data Access Layer, or Interfaces instead? , I am experienced in creation of nicely decoupled ...
6
votes
4answers
1k views
Implementing the Repository Pattern in ASP.NET MVC
I am still having a hard time wrapping my head around this. I want to separate my layers (dlls) like so:
1) MyProject.Web.dll - MVC Web App (Controllers, Models (Edit/View), Views)
2) ...
6
votes
3answers
918 views
Service layer in java swing application
i'm thinking if i really need a service layer.
I'm using spring + hibernate for a desktop swing application and at this moment i have gui/swing layer->service layer->dao layer. I use spring only for ...
5
votes
2answers
150 views
Are Doctrine2 repositories a good place to save my entities?
When I read docs about repositories, it is often to work with entities & collection but in a "read-only" manner.
There are never examples where repositories have methods like insertUser(User ...
5
votes
1answer
239 views
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 in a MVC app. After doing some reading I can really see the benefits of this ...
5
votes
1answer
263 views
How do I inject access control into a service layer of mvc application?
I'm coding a zend framework application using the the standard mvc paradigm with an added service layer to take care of application/business logic. It seems quite popular to put your access control ...
5
votes
2answers
393 views
Am I using service layer correctly?
I have been reading up on DDD and I think I may be using services wrong or at least in a not so ideal way. My service classes tend to have quite a few instance variables containing repository ...
4
votes
5answers
279 views
Checked vs. Unchecked Exceptions in Service Layer
I work on a project with a legacy service layer that returns null in many places if a requested record does not exist, or cannot be accessed due to the caller not being authorized. I am talking about ...
4
votes
2answers
325 views
Application Service Layer - how to write API method interfaces
How do people design their service layer interfaces?
I'm programming a large web application (in PHP) and we're using MVC, and programming thin controllers e.g. (pseudo code follows)
public ...
4
votes
1answer
139 views
Using Grails without an user interface
I'm thinking about possible alternatives for our EJB based service layer and wondered if it would make sense to use just the service and database layer of Grails together with the Remoting Plugin or ...
4
votes
1answer
554 views
good practices and bad practices
i have some questions about interaction with hibernate.
openSession or getCurrentSession (without jta, thread insted)?
How mix session operations with swing gui? Is good have something like this in ...
4
votes
3answers
1k views
Purpose of the service layer
Am I correct in thinking that the purpose of a service layer includes the following?
thinning out of domain models (i.e. movement of certain functions like in caching, instantiation)
reduction in ...
3
votes
3answers
60 views
MVC - Controller to Service Layer Communication
In my ASP.net mvc app I am using a Service Layer and Repositories to keep my controllers thin. A typical details read only view looks like this:
public ActionResult Details(int id)
{
var project ...
3
votes
1answer
66 views
Responsibility of the Service Layer and Repository
I need some advice on where to draw the line with my services and repositories.
public class Contact
{
public Guid Id {get;set;}
public string Username {get;set;}
public Guid? ...
3
votes
1answer
83 views
Where to place service layer
I'm using FluentValidation framework. And at the moment I have several validators (per entity). I'm keeping entities in a separate assembly (ProjectName.Domain) and validators either.
I've read ...
3
votes
2answers
211 views
Getting all aggregate root entities child entities?
I am attempting to refactor my application from a repository per entity to a repository per aggregate root.
A basic example would be I have an entity root of Cars. Cars have hire contracts. As far as ...
3
votes
1answer
302 views
Help creating a flexible base 'find' method in a service class using the DRY principle
For years now I've been reimplementing the same code over and over (with evolution) without finding some method of cleanly, and efficiently, abstracting it out.
The pattern is a base 'find[Type]s' ...
3
votes
2answers
95 views
Where to put OAuth logic?
I'm using Zend Framework in a project, and I'm creating a controller only for authentication.
In this project we'll accept that a user signs up through a account of other sites like facebook, twitter, ...
3
votes
2answers
240 views
DRY-ing ASP.NET MVC actions: ApplicationController or Service?
I'm writing an ASP.NET MVC 3 app and I'm finding myself writing this line rather often in my action methods:
var user = _session.Single<User>(u => u.UserName == User.Identity.Name);
...
3
votes
2answers
322 views
The responsibilities of my service and repository layer
The other day I asked this question:
Should the repository layer return data-transfer-objects (DTO)?
The answer (well by just one person, but I already had a hunch that it wasn't a good idea) was ...
3
votes
3answers
2k views
Service Layer/Repository Pattern
I am building an MVC app using the Service Layer/Repository/Unit of Work pattern with EF4.
I am a bit confused on the logic. I know the point is to decouple the system, but I am a little confused.
...
3
votes
1answer
522 views
Should the repository layer return data-transfer-objects (DTO)?
I have a repository layer that is responsible for my data-access, which is called by a service layer. The service layer returns DTOs which are serialized and sent over the wire. More often than not, ...
3
votes
2answers
276 views
Using .NET membership provider throughout n-tier web app
I'm currently building an n-tier web application, mainly to practice new technologies and patterns - repositories, uow, services, ioc, ef4 and mvc3.
After lots of hair-pulling I now have ef4 saving ...
3
votes
1answer
359 views
Responsibilities of Service and Repository layers
Just trying to get my head round the responsibilities of the service layer and repository layer when saving an object to my persistence store.
My current under standing is this:
In my controller I ...
2
votes
2answers
81 views
AutoMapper in Service Layer
I have an MVC project where I am using AutoMapper to map my Entity Framework Entities to View Models. The code that defines the mappings is in a boostrapper class that is called automatically when the ...
2
votes
1answer
98 views
ASP.NET MVC - Service Layer <-> Controllers
Let's say you're implementing your own version of stackoverflow (once again, yes)
You have a service that provides all the required functionality like this:
class Question { ... } // EF entity
class ...
2
votes
1answer
72 views
Should my service layer be stateless?
I've a service layer which does the relation between for example my controller and my domain model (ie: repository, entities, etc..).
In my service, i've method which "get" entities, like getArticles ...
2
votes
2answers
293 views
asp.net mvc3, why do we need service layer when we use repository pattern
I was watching "storefront starter kit", its using repository pattern with service layer. In the video, he didnt really explain why he's using service layer. Seems like those are just extra.
what ...
2
votes
0answers
43 views
Should an entity service class call another entity's service or its repository
I am working on an ASP.Net MVC 3 web application (EF 4.1) separated in layers: Models, Repositories, Services, Controllers, ViewModels in some cases, and Views.
Now my question is one of best ...
2
votes
2answers
231 views
Where to put business logic in DDD
I'm trying to figure out the best way to build an easily maintainable and testable architecture. Having gone through several projects, I've seen some pretty bad architectures and I want to avoid ...
2
votes
1answer
186 views
Using Ninject to inject current user into my domain
I am having trouble injecting the current loggedonuser into my service layer, I am trying something similar to code camp server but struggling to figure out why my code does not work...
My app: UI ...
2
votes
1answer
363 views
Unit of Work Scope
I have a solution that uses webforms for front end & mvc for admin console.
Both UIs consume a service layer via Ninject, and i am having trouble working out a subtle but rather important issue.
...
2
votes
4answers
409 views
How Should I be wrapping my select statements in a transaction?
I am going threw my site with nhibernate profiler and I got this message
Alert: Use of implicit transactions is
discouraged
http://nhprof.com/Learn/Alerts/DoNotUseImplicitTransactions
I see ...
2
votes
1answer
90 views
How do you handle errors when using a service layer?
in my Zend Framework project, I use a Service Layer, however I don't really know where to handle errors.
For example, let's say I've a UserService::updateUser($data);
What if I've:
$data = array(
...
2
votes
1answer
465 views
ZF + Doctrine 2 : Heavy model classes or Lightweight model + Service layer?
I am integrating Zend Framework and Doctrine 2, and I am discovering the Service layer.
Now I understand (am I wrong ?) that I have 2 architectures possible :
A model, where classes contain domain ...
2
votes
2answers
906 views
Entity Framework Service Layer Update POCO
I am using the Service Layer --> Repository --> Entity Framework (Code-First) w/POCO objects approach, and I am having a hard time with updating entities.
I am using AutoMapper to map my Domain ...
2
votes
1answer
214 views
What is the best practice for a service layer design where the business data has a 1 to 0..1 relationship?
Greetings all,
I have researched and found a number of discussions on designing a MVC service layer, but I haven't found an answer to my exact questions. The post on service layer interdependency has ...
2
votes
2answers
441 views
Service Layer validation vs. Domain Object validation; potential “abuse” of Domain Objects?
I've seen lots of book and article examples saying to put validation code in your Service Layer. Keep the Domain Objects "dumb" (aka, pure POCO's) and handle all validation that a Domain Object might ...
2
votes
1answer
667 views
How to pass complex ViewModel to Service Layer in ASP.NET MVC?
Say I have RegisterModel for user registration and some UserService that implementing IUserService
public interface IUserService
{
User CreateUser(User newUser);
}
[HttpPost]
public ActionResult ...
2
votes
1answer
118 views
Where should these classes/methods go?
I have a structure like this
WebUI project - controllers, views
Framework project- repositories,service layer and domain
So now I have 3 methods/classes
Open Id/Open auth
At first I thought I ...
2
votes
3answers
288 views
Should you return a BindingList from a business layer (or service layer, domain model, etc.)?
I need a BindingList in my UI to provide two-way databinding between my collection and a DataGridView. However, it doesn't seem correct to return a BindingList from your business layer (or domain ...
2
votes
2answers
900 views
Advice With Repository/Service Layer Design Pattern
Trying to make a really simple repository and service layer pattern here. (.NET 4, C#, LINQ, although this question is partially language-agnostic). Note: this is just R&D.
My goal is to minimize ...
2
votes
1answer
155 views
Updating a Model in asp.net mvc
Our project manager has asked us to refactor an app that was using the Repository Pattern (it was done using Nerddinner as example) to now use a service Layer.
My problem now is that Im not sure how ...
2
votes
2answers
183 views
Where to throw an exception in layered architecture?
I've an application that offers its Business Layer through a Service Layer developed with WCF.
What I'm thinking about is: this service layer offers operational method like Create, Update and so on. ...