I am going through the following tutorial. I'm at the part
IUnityContainer BuildUnityContainer()
{
var container = new UnityContainer();
container.RegisterType<IStoreService, StoreService>();
container.RegisterType<IController, StoreController>("Store");
return container;
}
The question I have is how do I do multiple controllers? For instance if I have Store, Music, and Owner controllers, each with their own I[Name]Service