Dependency Injection In ASP.NET MVC 5

I have seen many articles about Dependency Injection in MVC and C# and thought to write an article about using Dependency Injection in ASP.NET MVC5.

Dependency Injection (DI) in MVC

Dependency Injection is an implementation of "Inversion of Control". Inversion of Control (IoC) says that the objects do not create other objects on which they rely to do their work; instead, they get the objects that they need from an outside source (for example, an XML configuration file).

So now, let’s implement the same.

  • Add a new ASP.NET MVC project.

    Dependency Injection In ASP.NET

    Dependency Injection In ASP.NET

    Dependency Injection In ASP.NET
  • No, install the "Unity.Mvc5" Container using NuGet Package Manager, as shown below.

    Dependency Injection In ASP.NET

    Dependency Injection In ASP.NET

    When it is installed successfully, you will find the following two references added to your project and a UnityConfig.cs class file in App-Start folder.

    Dependency Injection In ASP.NET
  • Now, let’s create the repository that will be accessed by Controller.

    • Add a folder named Repository.
    • Add an interface IUserMasterRepository.
      1. interface IUserMasterRepository  
      2. {  
      3.     IEnumerable<UserMaster> GetAll();  
      4.     UserMaster Get(int id);  
      5.     UserMaster Add(UserMaster item);  
      6.     bool Update(UserMaster item);  
      7.     bool Delete(int id);  
      8. }  
  • Now, add the repository which has your data access code.
    1. public class UserMasterRepository : IUserMasterRepository  
    2. {  
    3.     private List<UserMaster> users = new List<UserMaster>();  
    4.     private int Id = 1;  
    5.   
    6.     public UserMasterRepository()  
    7.     {  
    8.         // Add products for the Demonstration  
    9.         Add(new UserMaster { Name = "User1", EmailID = "[email protected]", MobileNo="1234567890" });  
    10.         Add(new UserMaster { Name = "User2", EmailID = "[email protected]", MobileNo = "1234567890" });  
    11.         Add(new UserMaster { Name = "User3", EmailID = "[email protected]", MobileNo = "1234567890" });  
    12.     }  
    13.   
    14.     public UserMaster Add(UserMaster item)  
    15.     {  
    16.         if (item == null)  
    17.         {  
    18.             throw new ArgumentNullException("item");  
    19.         }  
    20.   
    21.         item.ID = Id++;  
    22.         users.Add(item);  
    23.         return item;  
    24.     }  
    25.   
    26.     public bool Delete(int id)  
    27.     {  
    28.         users.RemoveAll(p => p.ID  == id);  
    29.         return true;  
    30.     }  
    31.   
    32.     public UserMaster Get(int id)  
    33.     {  
    34.         return  users.FirstOrDefault(x => x.ID == id);  
    35.     }  
    36.   
    37.     public IEnumerable<UserMaster> GetAll()  
    38.     {  
    39.         return users;  
    40.     }  
    41.   
    42.     public bool Update(UserMaster item)  
    43.     {  
    44.         if (item == null)  
    45.         {  
    46.             throw new ArgumentNullException("item");  
    47.         }          
    48.         int index = users.FindIndex(p => p.ID == item.ID);  
    49.         if (index == -1)  
    50.         {  
    51.             return false;  
    52.         }  
    53.         users.RemoveAt(index);  
    54.         users.Add(item);  
    55.         return true;  
    56.     }  
    57. }  

Note

Here, we have used a repository. You can use services which will consume your Repository.

  • Now, register this repository to container in UnityConfig.cs.
    1. public static void RegisterComponents()  
    2. {  
    3.     var container = new UnityContainer();         
    4.     container.RegisterType<IUserMasterRepository, UserMasterRepository>();  
    5.     DependencyResolver.SetResolver(new UnityDependencyResolver(container));  
    6. }  
  • Add UnityConfiguration in AppStart method of Global.asax
    1. protected void Application_Start()  
    2. {  
    3.     AreaRegistration.RegisterAllAreas();
    4.     FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    5.     RouteConfig.RegisterRoutes(RouteTable.Routes);
    6.     BundleConfig.RegisterBundles(BundleTable.Bundles);
    7.     UnityConfig.RegisterComponents();  
    8. }  
  •  Inject the Dependency in Controller.

    • Create UserController

      Dependency Injection In ASP.NET

      Dependency Injection In ASP.NET

    • Now, in the below code, we have created a constructor of UserContoller, injected the UserMasterRepository, and accessed it in Index action.
      1. public class UserController : Controller  
      2. {  
      3.     readonly IUserMasterRepository userRepository;  
      4.     public UserController(IUserMasterRepository repository)  
      5.     {  
      6.         this.userRepository = repository;  
      7.     }  
      8.     // GET: User  
      9.     public ActionResult Index()  
      10.     {  
      11.         var data = userRepository.GetAll();  
      12.         return View(data);  
      13.     }  
      14. }  
  • Add a View for the same.

    • Add User folder in Views folder.
    • Add Index View.

      Dependency Injection In ASP.NET

      Dependency Injection In ASP.NET

Below is the code which needs to be written in Index View file.

  1. @model IEnumerable<MVCWithDI.Repository.UserMaster>  
  2.   
  3. @{  
  4.     ViewBag.Title = "Users";  
  5.     Layout = "~/Views/Shared/_Layout.cshtml";  
  6. }  
  7.   
  8. <h2>Index</h2>  
  9.   
  10. <p>  
  11.     @Html.ActionLink("Create New""Create")  
  12. </p>  
  13. <table class="table">  
  14.     <tr>  
  15.         <th>  
  16.             @Html.DisplayNameFor(model => model.Name)  
  17.         </th>  
  18.         <th>  
  19.             @Html.DisplayNameFor(model => model.EmailID)  
  20.         </th>  
  21.         <th>  
  22.             @Html.DisplayNameFor(model => model.MobileNo)  
  23.         </th>  
  24.         <th></th>  
  25.     </tr>  
  26.   
  27. @foreach (var item in Model) {  
  28.     <tr>  
  29.         <td>  
  30.             @Html.DisplayFor(modelItem => item.Name)  
  31.         </td>  
  32.         <td>  
  33.             @Html.DisplayFor(modelItem => item.EmailID)  
  34.         </td>  
  35.         <td>  
  36.             @Html.DisplayFor(modelItem => item.MobileNo)  
  37.         </td>  
  38.         <td>  
  39.             @Html.ActionLink("Edit""Edit"new { id=item.ID }) |  
  40.             @Html.ActionLink("Details""Details"new { id=item.ID }) |  
  41.             @Html.ActionLink("Delete""Delete"new { id=item.ID })  
  42.         </td>  
  43.     </tr>  
  44. }  
  45.   
  46. </table>  

Now, run the project. Here is the output.

Dependency Injection In ASP.NET


Similar Articles