Is it possible to do DI without any third party tools? I've read about people doing it with an abstract class and interface before they discovered some DI framework. How is ID done in that very basic form?
|
|
|
|
|
|
|
There are three ways you can do it...
|
||
|
|
|
You can create your components communicating with each other through interfaces and have your hosting program that instantiates the components and link them together. This would be your solution structure:
You can create unit tests for any of your components mocking up the components that are used by the component you are testing. Also you can get fancy reading the property bindings from the app.confing file in the hosting project. |
||
|
|
|
Of course it's possible without third-party tools. Simple sample:
In some code:
..but then we want the log in a file instead:
So, we inject the file logger instead:
|
|||
|
|
|
|
Just pass the dependencies to the constructor of the class when you instantiate it. No DI frameworks are needed when the project is small (below a couple of thousand lines of code) - you can write a factory and wire up all the dependencies manually. |
||
|
|
|
|
There is a nice description in this tutorial. Basically what you do is that you let the
Now, as you see, we have provided a default class type that will be instantiated if no argument is provided to the constructor. But we have also allowed for injection of a different class that implements the same interface, or a mock object of the same. EDIT: As pointed out in a comment, it is probably better in a larger app to have a factory that instantiates the |
||||||||
|
