Пример #1
0
 public Authentication(RequestDelegate next, IOptions <Auth_Config> authConfig)
 {
     _next       = next;
     _authConfig = authConfig.Value;
 }
 public Login_BL(IUserCredentialCollection credentialCollection, IOptions <Auth_Config> authConfig)
 {
     _userCredentialCollection = credentialCollection;
     _authConfig = authConfig.Value;
 }