public class ServiceThatProvidesDep
{
public Dep GetDep()
{
// return dep object
}
}
public class ServiceThatConsumesDep
{
public ServiceThatConsumesDep(Dep dep)
{
// ...
}
}
インストーラーは次のようになります。
container.Register(Component.For<ServiceThatProvidesDep>());
container.Register(Component.For<Dep>().UsingService<ServiceThatProvidesDep>(s => s.GetDep()));