問題タブ [tinyioc]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - TinyIoc レジスタと複数の型のインターフェイス
IService
ベースインターフェイスを登録しようとしていますTinyIoc
現在、私はから継承する複数のクラスを持っていますIservice
たとえばAuthenticationService
、両方とも実装RestService
する基本クラスから継承しますService
Iservice
私がやっている方法は、このようなもので、各サービスを個別に登録しています。
どちらも継承して Service : IService
いるため、1回の呼び出しで両方を登録する方法はありますか、それとも各サービスを個別に登録する必要がありますか?