What is Dependency Injection? As the name says, this technique allows you to pass/inject objects (dependencies) to a receiver object. There are two types of dependency injection: Constructor Injection Property Injection But what is a Dependency? A Dependency is an object (eg. a class) that…