Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Instruction

Updating Our DI Configuration

Our web app is configured to use Simple Injector for its DI (dependency injection) container. This allows us to simply declare any dependencies that a class needs via its constructor and the DI container at runtime will provide instances of those dependencies for us to use.

> For information on how to use a DI container with ASP.NET see the [Dependenc...