Binding both services and parameters with dependency injection – Asp.net
I have a service consuming a set of services implementing an interface IX: public class MyService() { MyService(IEnumerable<IX> xs) { // Store xs in some field and later use them repeatedly. } } I want a number of instances of…