I have a rather simple solution setup:
Web Project --> Service layer --> Repositories
My IoCbootstrapper class is located in my web project.
var c = new Container();
c.Register<IUserService, UserService>();
c.Register<ILoggingService, LoggingService>();
That's fine but my services are depending on repositories.
Is there a way to have a "parital bootsrapper" in Service layer class library that would then be somehow passed as a configuration to a web project since this way an instance of service cannot be created as web project is not aware of repositories?