使用autofac解析具有子接口的接口

时间:2016-02-07 08:45:36

标签: c# autofac

在我们的项目中,服务注册就像ff代码:

builder.RegisterType< Car >().As< IVehicle >().InstancePerDependency();

如果Car有另一个界面,我该如何更改上述代码才能解决?

让我们说这种关系就像ff:

Car : ICar, IVehicle

1 个答案:

答案 0 :(得分:0)

你需要这样的东西。

Traceback (most recent call last):
  line 39, in <module>
    main();
  line 9, in main
    correct();
  line 24, in correct
    if (age <= 25):
NameError: name 'age' is not defined