I have a IUserService (and other services) that I am registering in bulk in my ServiceInstaller.cs:
container.Register( AllTypes.FromAssemb
here's your scenario as I understand it:
public class UserService { UserService(AuthenticationService a){} } public class AuthenticationService { AuthenticationService (UserService a){} }
How would you create instances of both classes, creating at most single instance of each class?