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