Implementing dependency injection pattern in .NET

No.of Views1097
Bookmarked0 times
Downloads 
Votes0
By  jalpesh   On  30 Mar 2011 10:03:47
Tag : .NET Frameworks , General
Dependency injection pattern is a Software and Architecture designing technique that enables to us to separation of concerns,Modules,Classes and Extensibility of Software Development Project
emailbookmarkadd commentsprint

Images in this article missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at info@codegain.com

 

Introduction

Dependency injection pattern is a Software and Architecture designing technique that enables to us to separation of concerns,Modules,Classes and Extensibility of Software Development Project. It enables developer to reduce the complexity of project and you can also add new features to software without modifying whole structures. Let’s first understand how dependency injection is important and why we need it.

Why we need dependency inejction?

Let’s a take two class example of shopping cart. I am having two classes ProductDAL and ProductBLL.Here ProductDAL class represent whole data access Methods while ProductBLL implements whole Business logic in software. In normal scenario what we are doing do we will create a new object ProductDAL classes and then we will use that class for our database operations like below.

Public Class ProducDAL
{
 //Methods for database operations
}
 
Public Class ProductBLL
{
 ProductDAL objectProductDAL=new ProductDAL();
 
 //Methods for business logic where we are going to use DAL class
}

As you can see in above scenario we will have tight coupling because here we have created the new object of ProductDAL class and we can only change that if we change the container class ProductBLL. This will not help if we need to extend software after sometime and we need to modify the BLL without modifying existing class.So here comes dependency injection in picture. You can use dependency injection in this kind of scenario.

Ways of implementing Dependency Injection:

There are three ways of implementing dependency injection pattern.

  1. Constructor Injection.
  2. Setter Injection.
  3. Interface base Injection

Constuctor Injection:

In this kind of injection we can use constructor parameters to inject dependencies. Like following.

Interface IDAL
{
 
}
 
public class ProductDAL:IDAL
{
 //implement the methods of IDAL
}
 
public class ProductBLL
{
 private IDAL myDalObject;
 
 public ProducttBLL(IDAL iDal)
 {
     myDalObject=iDAL;
 }
 
 //use myDalObject to implement business logic
}

Here you can see in above example I have created a Interface IDAL and that interface contains the all method of Data Access Layer. Now we have ProductDAL class which implements that interface. So now you can create object of ProductBLL class like following.

ProductDAL objProductDAL=new ProductDAL();
PrductBLL objProductBLL=new ProductBLL(objProductDAL);

Here you can see you can pass any class as parameter in ProductBLL class which implements IDAL interface. Its not a concrete object so you can change implementation of ProductDAL class without changing ProductBLL class.

Setter Injection:

In this way we can create public property of Interface and then we can use that property to define the object of ProductDAL class like following.

Public Class ProductBLL
{
 IDAL _myDalObject;
 
 Pulibc IDAL myDalObject
 {
     get
     {
         return _myDalObject;
     }
     set
     {
         _myDalObject=value;
     }
 }
}

So here you can use property to initialize the ProductDAL class like following.

Infterface Injection:

In this section we can have a Method which will have interface as parameter and that will set object of ProductDAL class.

Public Class PrductBLL
{
 IDAL _myDALObject;
 
 public IntializeDAL(IDAL dalOjbect)
 {
     _myDALOjbect=dalObject;
 }
}

This is same as constructor injection except that this will intialize object after we call this IntializeDAL method like following.

ProductDAL objProductDAL=new ProductDAL();
PrductBLL objProductBLL=new ProductBLL();
objProductBLL.IntializeDAL(objProductDAL);

Hope you liked it. Stay tuned for more.Happy programming.

 
Sign Up to vote for this article
 
About Author
 
jalpesh
Occupation-Software Engineer
Company-DotNetJaps
Member Type-Expert
Location-India
Joined date-08 May 2010
Home Page-http://www.dotnetjalps.com
Blog Page-http://www.dotnetjalps.com
I am jalpesh vadgamaa an Microsoft MVP for Visual C# and BrainBench Certified ASP.NET Developer having experience of five year in Microsoft .NET Technology.I am working as Project Leader in Mid Size company.My work area comprises of Enterprise Level projects using ASP.NET and other Microsoft .NET Technologies.Please feel free to contact me for any queries via posting comments on my blog I will try to reply as early as possible.
 
 
Other popularSectionarticles
Comments
By:MostafaDate Of Posted:3/30/2011 11:54:21 PM
Mostafa
Thanks. Is it kinda design Pattern ? Because i looked it up in some design pattern book and i get nothing .
Leave a Reply
Title:
Display Name:
Email:
(not display in page for the security purphase)
Website:
Message:
Please refresh your screen using Ctrl+F5
If you can't read this number refresh your screen
Please input the anti-spam code that you can read in the image.
^ Scroll to Top