如何注入.NET提供程序(OAuthAuthorizationServerProvider)?

时间:2014-07-04 14:50:27

标签: c# dependency-injection

我正在寻找有关如何将IApplicationUserManager注入OAuthAuthorizationServerProvider.cs的解决方案。

这是我现在看的样本:( https://github.com/tjoudeh/AngularJSAuthentication/blob/master/AngularJSAuthentication.API/Providers/SimpleAuthorizationServerProvider.cs)。

不同之处在于我使用dependency injections(Autofac)。他们的AuthRepository将是我的ApplicationUserManager。

注入:

builder.RegisterType(typeof(ApplicationUserManager)).As(typeof(IApplicationUserManager)).InstancePerRequest();

您有任何想法甚至更好的解决方案吗?

0 个答案:

没有答案