I have a ASP.NET MVC Web App with the following layers
UI Layer -> Service Layer -> Data Access Layer -> Database
Each layer is a separate project. Plus there is another project for each layer (apart from the UI Layer) which contains only the interfaces.
My question is, when building the Autofac container I specify the dependencies (Service Layer, Data Access Layer) along with the interfaces, in the OwinStartup Class. Is this the proper place to do this? If not how do I separate this.