StructureMap is a Dependency Injection / Inversion of Control tool for .NET licensed under Apache 2.
In my StructureMap bootstrapping code I'm using a custom convention to scan assemblies and add interface/implementation pairs to the …
c# .net dependency-injection ioc-container structuremapI have a service class with the following ctor: public class (IMessageService emailService, IMessageService smsService) { ... } and two implementations of IMessageService (…
c# dependency-injection inversion-of-control structuremap