dependency injection net framework

hi all, I'm following a reference on how to use dependency injection in net framework
https://stackoverflow.com/questions/43311099/how-to-create-dependency-injection-for-asp-net-mvc-5

i tried to implement the solution the way they register the services, but when i run the controller i saw that the Interface is not initialized.. even though when i try to debug, the program run through the initialization part like this
services.AddScoped<IDailyConversion, DailyConversion>();
... does anyone have any idea maybe what could be the issue..?
unknown-1.png
unknown-2.png
Stack Overflow
Creating Dependency Injection with ASP.NET Core is fairly easy. The documentation explains it very well here and this guy has a killer video to explain it.

However, I want to do the same thing wit...
Was this page helpful?