diff --git a/src/roadmaps/aspnet-core/content/105-dependency-injection/index.md b/src/roadmaps/aspnet-core/content/105-dependency-injection/index.md index d436aec42..33a2d7255 100644 --- a/src/roadmaps/aspnet-core/content/105-dependency-injection/index.md +++ b/src/roadmaps/aspnet-core/content/105-dependency-injection/index.md @@ -5,8 +5,6 @@ Dependency injection (DI) is a software design pattern that is used to manage th In a typical implementation, a DI container is used to manage the dependencies of the application. The container is responsible for creating and managing instances of objects and their dependencies, and providing them to other objects as needed. There are different types of dependency injection, such as Constructor injection, Property injection, and Method injection, which can be used depending on the requirement and the design of the application. - - Visit the following links for more resources: - [What is Dependency Injection?](https://stackoverflow.com/questions/130794/what-is-dependency-injection)