我正在尝试IService
在TinyIoc
目前我有多个类继承自Iservice
例如AuthenticationService
,RestService
两者都继承自Service
实现的基类Iservice
我这样做的方式是这样的,分别注册每个服务。
container.Register<IAuthenticationService, AuthenticationService>();
container.Register<IRestService, RestService>();
因为他们都继承自有 Service : IService
没有办法在一个电话中注册两者,还是我必须单独注册每个服务?