public CustomService(IDiSampleTransient transient, IDiSampleScoped scoped, IDiSampleSingleton singleton) { Transient = transient; Scoped = scoped; Singleton = singleton; }
public HomeController(IDiSampleTransient transient, IDiSampleScoped scoped, IDiSampleSingleton singleton, ISessionWapper sessionWapper) { _diTransient = transient; _diScoped = scoped; _diSingleton = singleton; _sessionWapper = sessionWapper; }