現在、次のコードを含むインストーラーがあります。
container.Register(Component.For<EntityListResolver<Unit>>()
.ImplementedBy<EntityListResolver<Unit>>());
container.Register(Component.For<EntityResolver<Unit>>()
.ImplementedBy<EntityResolver<Unit>>());
この登録を変更して、送信するすべてのタイプに対して自動的に解決されるようにしたいと思います。Unit
これを達成するために登録を変更するにはどうすればよいですか?