I am using Castle Windsor for ioc in an MVC project.
My architecture is basically Web -> Services -> Data
The controllers have services as dependencies. The services have repositories as dependencies in the data layer.
My Web layer does not have a reference to the Data layer. My problem is that I am trying to register my repositories which is a dependency of my services. If i have a separate container in my services layer that registers the repositories how should I bootstrap it?
Or I may be going about this in the wrong way.