Introduction

Dependency Injection (DI) is a fancy term for “passing things in”. All it really means is passing the dependencies of an object via the constructor and / or setters instead of creating them upon object creation inside the object.

Dependency Injection might also refer to Dependency Injection Containers which automate the construction and injection.