I have a service class with the following ctor:
public class (IMessageService emailService, IMessageService smsService) { ... }
and two impleme
Turns out named instances are one possible solution:
_.For().Use().Named("emailService"); _.For().Use().Named("smsService");