I\'ve written an interface which is implemented by multiple classes. I want to write a Service class which will have all the registered implementations injected into its cto
Found this answer useful though I was still missing how to register all the implementations of a given interface.
Hope this helps!
container.Register( Classes.FromAssemblyContaining() .BasedOn().WithService.FromInterface() );