Validating with a Service Layer
(C#)
The goal of this tutorial is to describe
one method of performing validation in an ASP.NET MVC application. In
this tutorial, you learn how to move your validation logic out of your
controllers and into a separate service layer.
Separating Concerns
When you build an ASP.NET MVC application,
you should not place your database logic inside your controller actions.
Mixing your database and controller logic makes your application more
difficult to maintain over time. The recommendation is that you place
all of your database logic in a separate repository layer.
For example, Listing 1 contains a simple
repository named the ProductRepository. The product repository contains
all of the data access code for the application. The listing also includes
the IProductRepository interface that the product repository implements.
Listing 1 -- Models\ProductRepository.cs
using System.Collections.Generic;
using System.Linq;
namespace MvcApplication1.Models
{
public class ProductRepository : MvcApplication1.Models.IProductRepository
{
private ProductDBEntities _entities = new ProductDBEntities();
public IEnumerable<Product> ListProducts()
{
return _entities.ProductSet.ToList();
}
public bool CreateProduct(Product productToCreate)
{
try
{
_entities.AddToProductSet(productToCreate);
_entities.SaveChanges();
return true;
}
catch
{
return false;
}
}
}
public interface IProductRepository
{
bool CreateProduct(Product productToCreate);
IEnumerable<Product> ListProducts();
}
}
The controller in Listing 2 uses the
repository layer in both its Index() and Create() actions. Notice that
this controller does not contain any database logic. Creating a repository
layer enables you to maintain a clean separation of concerns. Controllers
are responsible for application flow control logic and the repository
is responsible for data access logic.
Listing 2
– Controllers\ProductController.cs
using System.Web.Mvc;
using MvcApplication1.Models;
namespace MvcApplication1.Controllers
{
public class ProductController : Controller
{
private IProductRepository _repository;
public ProductController():
this(new ProductRepository()) {}
public ProductController(IProductRepository repository)
{
_repository = repository;
}
public ActionResult Index()
{
return View(_repository.ListProducts());
}
//
// GET: /Product/Create
public ActionResult Create()
{
return View();
}
//
// POST: /Product/Create
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Exclude="Id")] Product productToCreate)
{
_repository.CreateProduct(productToCreate);
return RedirectToAction("Index");
}
}
}
Creating a Service
Layer
So, application flow control logic
belongs in a controller and data access logic belongs in a repository.
In that case, where do you put your validation logic? One option is
to place your validation logic in a service layer.
A service layer is an additional layer
in an ASP.NET MVC application that mediates communication between a
controller and repository layer. The service layer contains business
logic. In particular, it contains validation logic.
For example, the product service layer
in Listing 3 has a CreateProduct() method. The CreateProduct() method
calls the ValidateProduct() method to validate a new product before
passing the product to the product repository.
Listing 3
– Models\ProductService.cs
using System.Collections.Generic;
using System.Web.Mvc;
namespace MvcApplication1.Models
{
public class ProductService : MvcApplication1.Models.IProductService
{
private ModelStateDictionary _modelState;
private IProductRepository _repository;
public ProductService(ModelStateDictionary modelState, IProductRepository repository)
{
_modelState = modelState;
_repository = repository;
}
protected bool ValidateProduct(Product productToValidate)
{
if (productToValidate.Name.Trim().Length == 0)
_modelState.AddModelError("Name", "Name is required.");
if (productToValidate.Description.Trim().Length == 0)
_modelState.AddModelError("Description", "Description is required.");
if (productToValidate.UnitsInStock < 0)
_modelState.AddModelError("UnitsInStock", "Units in stock cannot be less than zero.");
return _modelState.IsValid;
}
public IEnumerable<Product> ListProducts()
{
return _repository.ListProducts();
}
public bool CreateProduct(Product productToCreate)
{
// Validation logic
if (!ValidateProduct(productToCreate))
return false;
// Database logic
try
{
_repository.CreateProduct(productToCreate);
}
catch
{
return false;
}
return true;
}
}
public interface IProductService
{
bool CreateProduct(Product productToCreate);
IEnumerable<Product> ListProducts();
}
}
The Product controller has been updated
in Listing 4 to use the service layer instead of the repository layer.
The controller layer talks to the service layer. The service layer talks
to the repository layer. Each layer has a separate responsibility.
Listing 4
– Controllers\ProductController.cs
Listing 4 – Controllers\ProductController.cs
using System.Web.Mvc;
using MvcApplication1.Models;
namespace MvcApplication1.Controllers
{
public class ProductController : Controller
{
private IProductService _service;
public ProductController()
{
_service = new ProductService(this.ModelState, new ProductRepository());
}
public ProductController(IProductService service)
{
_service = service;
}
public ActionResult Index()
{
return View(_service.ListProducts());
}
//
// GET: /Product/Create
public ActionResult Create()
{
return View();
}
//
// POST: /Product/Create
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Exclude = "Id")] Product productToCreate)
{
if (!_service.CreateProduct(productToCreate))
return View();
return RedirectToAction("Index");
}
}
}
Notice that the product service is
created in the product controller constructor. When the product service
is created, the model state dictionary is passed to the service. The
product service uses model state to pass validation error messages back
to the controller.
Decoupling the
Service Layer
We have failed to isolate the controller
and service layers in one respect. The controller and service layers
communicate through model state. In other words, the service layer has
a dependency on a particular feature of the ASP.NET MVC framework.
We want to isolate the service layer
from our controller layer as much as possible. In theory, we should
be able to use the service layer with any type of application and not
only an ASP.NET MVC application. For example, in the future, we might
want to build a WPF front-end for our application. We should find a
way to remove the dependency on ASP.NET MVC model state from our service
layer.
In Listing 5, the service layer has
been updated so that it no longer uses model state. Instead, it uses
any class that implements the IValidationDictionary interface.
Listing 5
– Models\ProductService.cs (decoupled)
using System.Collections.Generic;
namespace MvcApplication1.Models
{
public class ProductService : IProductService
{
private IValidationDictionary _validatonDictionary;
private IProductRepository _repository;
public ProductService(IValidationDictionary validationDictionary, IProductRepository repository)
{
_validatonDictionary = validationDictionary;
_repository = repository;
}
protected bool ValidateProduct(Product productToValidate)
{
if (productToValidate.Name.Trim().Length == 0)
_validatonDictionary.AddError("Name", "Name is required.");
if (productToValidate.Description.Trim().Length == 0)
_validatonDictionary.AddError("Description", "Description is required.");
if (productToValidate.UnitsInStock < 0)
_validatonDictionary.AddError("UnitsInStock", "Units in stock cannot be less than zero.");
return _validatonDictionary.IsValid;
}
public IEnumerable<Product> ListProducts()
{
return _repository.ListProducts();
}
public bool CreateProduct(Product productToCreate)
{
// Validation logic
if (!ValidateProduct(productToCreate))
return false;
// Database logic
try
{
_repository.CreateProduct(productToCreate);
}
catch
{
return false;
}
return true;
}
}
public interface IProductService
{
bool CreateProduct(Product productToCreate);
System.Collections.Generic.IEnumerable<Product> ListProducts();
}
}
The IValidationDictionary interface
is defined in Listing 6. This simple interface has a single method and
a single property.
Listing 6
– Models\IValidationDictionary.cs
namespace MvcApplication1.Models
{
public interface IValidationDictionary
{
void AddError(string key, string errorMessage);
bool IsValid { get; }
}
}
The class in Listing 7, named the ModelStateWrapper
class, implements the IValidationDictionary interface. You can instantiate
the ModelStateWrapper class by passing a model state dictionary to the
constructor.
Listing 7
– Models\ModelStateWrapper.cs
using System.Web.Mvc;
namespace MvcApplication1.Models
{
public class ModelStateWrapper : IValidationDictionary
{
private ModelStateDictionary _modelState;
public ModelStateWrapper(ModelStateDictionary modelState)
{
_modelState = modelState;
}
#region IValidationDictionary Members
public void AddError(string key, string errorMessage)
{
_modelState.AddModelError(key, errorMessage);
}
public bool IsValid
{
get { return _modelState.IsValid; }
}
#endregion
}
}
Finally, the updated controller in Listing 8 uses the ModelStateWrapper when creating the service layer in its constructor.
Listing 8
– Controllers\ProductController.cs
using System.Web.Mvc;
using MvcApplication1.Models;
namespace MvcApplication1.Controllers
{
public class ProductController : Controller
{
private IProductService _service;
public ProductController()
{
_service = new ProductService(new ModelStateWrapper(this.ModelState), new ProductRepository());
}
public ProductController(IProductService service)
{
_service = service;
}
public ActionResult Index()
{
return View(_service.ListProducts());
}
//
// GET: /Product/Create
public ActionResult Create()
{
return View();
}
//
// POST: /Product/Create
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create([Bind(Exclude = "Id")] Product productToCreate)
{
if (!_service.CreateProduct(productToCreate))
return View();
return RedirectToAction("Index");
}
}
}
Using the IValidationDictionary interface
and the ModelStateWrapper class enables us to completely isolate our
service layer from our controller layer. The service layer is no longer
dependent on model state. You can pass any class that implements the
IValidationDictionary interface to the service layer. For example, a
WPF application might implement the IValidationDictionary interface
with a simple collection class.
Summary
The goal of this tutorial was to discuss
one approach to performing validation in an ASP.NET MVC application.
In this tutorial, you learned how to move all of your validation logic
out of your controllers and into a separate service layer. You also
learned how to isolate your service layer from your controller layer
by creating a ModelStateWrapper class.