次のチュートリアルを進めています。私はパートにいます
IUnityContainer BuildUnityContainer()
{
var container = new UnityContainer();
container.RegisterType<IStoreService, StoreService>();
container.RegisterType<IController, StoreController>("Store");
return container;
}
私が持っている質問は、複数のコントローラーをどのように行うのですか? たとえば、Store、Music、および Owner コントローラーがあり、それぞれに独自の I[Name]Service がある場合