Samson Bujju
Samson Bujju

Reputation: 625

How to implement n-layer architecture in MVC?

I know this question has been asked before. I am only asking so that I can get a better explanation. In my webforms applications, this is how I implemented my projects. The solution had two projects. The first project contains Data Access and Business Logic. The first project is referenced in the second project. The aspx.cs files call the business logic class and the business logic class calls the data access class.

I am trying to follow the same approach in my MVC applicaiton. How would I implement that? Controller calls Model which in turn calls Business logic? This approach would add overhead right?

Upvotes: 0

Views: 611

Answers (2)

DeepakKhetwal
DeepakKhetwal

Reputation: 84

Have your architecture with following things

Data access project - add ORM/ADO.net with repository and unit of work pattern. Repositories can be generated using T4 template from ORM

ViewModel project - have a separate project for Viewmodels (containing properties to be used by view).

Business layer - have classes which contains functions that access repositories from data access layer, join them if needed using LINQ and populate in Viewmodel and return view model object or view model collection to controller.

WEB Project - Controller - access business layer functions using dependency injection and return view model to view View - Access view mode returned by controller

Upvotes: 0

Keith Payne
Keith Payne

Reputation: 3082

In reference to the direction the comments are taking this thread (this doesn't fit neatly into a comment):

The models folder that is created with a new MVC project is for View Models - they are classes to support views. These are not your business models or data models.

For instance, in a ViewModel that supports a view, you might have a enum property that renders to a dropdown:

public enum CustomerTypes 
{
    INDIVIDUAL = 0,
    COMPANY
}

public class CustomerViewModel
{
    public CustomerTypes Type { get; set; }

    public string[] CustomerTypesSelectList { get; set; }
}


public class CustomerController : Controller
{
    public ActionResult Edit()
    {
        var model = new CustomerViewModel();
        model.CustomerTypesSelectList = 
            Enum.GetNames(typeof(CustomerTypesSelectList));

        return View(model);
    }
}

And with this you have some javascript in your view to populate a fancy drop down list with the items in CustomerTypesSelectList.

The UI-specific string[] property is a common construct of a ViewModel that gets stripped away when it gets converted to the business model or data model. The Controller would control the conversion (a.k.a. mapping), but probably rely on another class to implement the mapping that ties together the ViewModel and the business model.

To sum up, in an n-layer architecture:

  1. The MVC Controller is not your business logic. Your business logic resides inside of various services and components that are called by the controller.
  2. The Models folder contains ViewModels - classes that are meant to support the operation of the UI only.
  3. The Controller calls a mapper to translate between ViewModels and business models when calling into the business layer.

Upvotes: 2

Related Questions