我有一个像这样的界面:
public interface IService<T>
{
void DoSomething(T obj)
}
以及几种实现:
public class ServiceA : IService<A>
{
public void DoSomething(A a)
}
public class ServiceB : IService<B>
{
public void DoSomething(B b)
}
如何注入IService<T>在消费类的构造函数中实现的所有实例?
慕仙森
相关分类