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 brain is just not getting it...yet!!

link|improve this question

feedback

3 Answers

up vote 36 down vote accepted

Repository Layer gives you additional level of abstraction over data access. Instead of writing

var context = new DatabaseContext();
return CreateObjectQuery<Type>().Where(t => t.ID == param).First();

to get single item from database, you use repostiory interface

public interface IRepository<T>
{
    IQueryable<T> List();
    bool Create(T item);
    bool Delete(int id);
    T Get(int id);
    bool SaveChanges();
}

and call Get(id). Repository layer exposes basic CRUD operations.

Service layer exposes business logic, which uses repository. Example service could look like:

public interface IUserService
{
    User GetByUserName(string userName);
    string GetUserNameByEmail(string email);
    bool EditBasicUserData(User user);
    User GetUserByID(int id);
    bool DeleteUser(int id);
    IQueryable<User> ListUsers();
    bool ChangePassword(string userName, string newPassword);
    bool SendPasswordReminder(string userName);
    bool RegisterNewUser(RegisterNewUserModel model);
}

While List() method of repository returns all users, ListUsers() of IUserService could return only ones, user has access to.

In ASP.NET MVC + EF + SQL SERVER, I have this flow of communication:

Views <- Controllers -> Service layer -> Repository layer -> EF -> SQL Server

Service layer -> Repository layer -> EF This part operates on models.

Views <- Controllers -> Service layer This part operates on view models.

EDIT:

Example of flow for /Orders/ByClient/5 (we want to see order for specific client):

public class OrderController
{
    private IOrderService _orderService;
    public OrderController(IOrderService orderService)
    {
        _orderService = orderService; //injected by IOC container
    }

    public ActionResult ByClient(int id)
    {
        var model = _orderService.GetByClient(id);
        return View(model); 
    }
}

This is interface for order service:

public interface IOrderService
{
    OrdersByClientViewModel GetByClient(int id);
}

This interface returns view model:

public class OrdersByClientViewModel
{
     CientViewModel Client { get; set; } //instead of ClientView, in simple project EF Client class could be used
     IEnumerable<OrderViewModel> Orders { get; set; }
}

This is interface implementation. It uses model classes and repository to create view model:

public class OrderService  
{
     IRepository<Client> _clientRepository;
     public OrderService(IRepository<Client> clientRepository)
     {
         clientRepository = _clientRepository; //injected
     }

     public OrdersByClientViewModel GetByClient(int id)
     {
         return _clientRepository.Get(id).Select(c => 
             new OrdersByClientViewModel 
             {
                 Cient = new ClientViewModel { ...init with values from c...}
                 Orders = c.Orders.Select(o => new OrderViewModel { ...init with values from o...}     
             }
         );
     }
}
link|improve this answer
1  
Yes, that is how it works. – LukLed Feb 19 '11 at 14:53
1  
@Sam Striano: As you can see above, my IRepository returns IQueryable. This allows adding additional where conditions and deferred execution in service layer, not later. Yes, I use one assembly, but all these classes are placed in different namespaces. There is no reason to create many assemblies in small projects. Namespace and folder separation works nice. – LukLed Feb 19 '11 at 17:26
1  
@Sam Striano: Look at my edit. – LukLed Feb 19 '11 at 18:26
4  
Why return view models in the service? isn't the service suppose to emulate if you were to have multiple clients (mobile/web)? If thats the case then the viewmodel may differ from different platforms – Ryan Sep 17 '11 at 17:45
1  
@eldar: I never wrote about returning IQueryable. In my example service returns object with a list as IEnumerable. But yes, it should be mapped to view model class, not passed directly. I'll update my answer soon. – LukLed Oct 3 '11 at 9:26
show 9 more comments
feedback

As Carnotaurus said the repository is responsible for mapping your data from the storage format to you business objects. It should handle both how to read and write data(delete, update too) from and to the storage.

The purpose of service layer on the other hand is to encapsulate business locig into a single place to promote code reuse and separations of concerns. What this typically means for me in practice when building Asp.net MVC sites is that I have this structure

[Controller] calls [Service(s)] who calls [repository(ies)]

One principle I have found useful is to keep logic to a minimum in controllers and repositories.

In controllers it is because it helps keeping me DRY. It's very common that I need to use the same filtering or logic somewhere else and if I placed it in the controller I can't reuse it.

In repositories it is because I want to be able to replace my storage(or ORM) when something better comes along. And if I have logic in the repository I need to rewrite this logic when I change the repository. If my repository only returns IQueryable and the service does the filtering on the other hand, I will only need to replace the mappings.

For example I recently replaced several of my Linq-To-Sql repositories with EF4 and those where I had stayed true to this principle could replaced in a matter of minutes. Where I had some logic it was a matter of hours instead.

link|improve this answer
feedback

Usually a repository is used as scaffolding to populate your entities - a service layer would go out and source a request. It is likely that you would put a repository under your service layer.

link|improve this answer
So in an ASP.NET MVC app using EF4, maybe something like this: SQL Server --> EF4 --> Repository --> Service Layer --> Model --> Controller and vice a versa? – Sam Striano Feb 19 '11 at 7:04
1  
Yeah, your repository could be used to get lightweight entities from EF4; and your service layer could be used to send these back to a specialised model manager (Model in your scenario). The controller would call down to your specialised model manager to do this... Take a quick look at my blog for Mvc 2 / 3. I have diagrams. – Carnotaurus Feb 19 '11 at 7:12
Diagrams are here: carnotaurus.tumblr.com/tagged/MVC – Carnotaurus Feb 19 '11 at 7:21
Just for clarification: EF4 in your scenario is where Model is on my diagrams and Model in your scenario are specialised model managers in my diagrams – Carnotaurus Feb 19 '11 at 7:24
feedback

Your Answer

 
or
required, but never shown

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