Tag: Inversion of Control

  • What is Dependency injection?

    Dependency injection or DI is one of the important concepts in computer programming. It refers to the process of supplying an external dependency to a software component. Let’s try to understand the concept of Dependency Injection. There is a consumer who needs a particular service to accomplish a certain task. Without dependency injection, the consumer…