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 ProducDALAs 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.
{
//Methods for database operations
}
Public Class ProductBLL
{
ProductDAL objectProductDAL=new ProductDAL();
//Methods for business logic where we are going to use DAL class
}
Ways of implementing Dependency Injection:
There are three ways of implementing dependency injection pattern.- Constructor Injection.
- Setter Injection.
- Interface base Injection
In this kind of injection we can use constructor parameters to inject dependencies. Like following.
Interface IDALHere 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.
{
}
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
}
ProductDAL objProductDAL=new ProductDAL();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.
PrductBLL objProductBLL=new ProductBLL(objProductDAL);
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 ProductBLLSo here you can use property to initialize the ProductDAL class like following.
{
IDAL _myDalObject;
Pulibc IDAL myDalObject
{
get
{
return _myDalObject;
}
set
{
_myDalObject=value;
}
}
}
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 PrductBLLThis is same as constructor injection except that this will intialize object after we call this IntializeDAL method like following.
{
IDAL _myDALObject;
public IntializeDAL(IDAL dalOjbect)
{
_myDALOjbect=dalObject;
}
}
ProductDAL objProductDAL=new ProductDAL();Hope you liked it. Stay tuned for more.. Happy programming…
PrductBLL objProductBLL=new ProductBLL();
objProductBLL.IntializeDAL(objProductDAL);


3 thoughts on “ Implementing dependency injection pattern in .NET ”