public EmbeddedOAuthMiddlewareConfiguration(ITestUserService testUserService)
        {
            if (testUserService == null)
            {
                throw new ArgumentNullException(nameof(testUserService));
            }

            _testUserService = testUserService;
        }
 public TestAuthorizationServerProvider(ITestUserService testUserService)
 {
     _testUserService = testUserService;
 }
Esempio n. 3
0
 public ValuesController(ITestUserService _testUserService)
 {
     _TestUserService = _testUserService;
 }