我很抱歉问,但我不知道如何在搜索引擎中确定我的问题。
我正在使用结构。
ObjectFactory.Configure(x =>
{
x.For(typeof(IUtils)).Use(typeof(EFUtils));
});
现在我需要向组合补充这样的内容:
x.For<IList<IMovementsManager>>().Return(
new List<IMovementsManager>() {
new TaskManager(),
new WarehouseManager()
});
这样做是什么样的辛迪加?
EDIT:
In order to make it more clear, whenever the user asks for IList<IMovementsManager>
the StructureMap should return the following instance:
new List<IMovementsManager>() {
new TaskManager(),
new WarehouseManager()
}