Пример #1
0
 public LoginController(
     IVerifyCredentials login,
     IIdentityServerInteractionService interaction
     )
 {
     _login       = login;
     _interaction = interaction;
 }
Пример #2
0
 /////////////////////////////////////////////////
 /// Sets up constructor. Takes a base URI to
 /// route the login requests.
 /////////////////////////////////////////////////
 public LogIn(string apiUrl)
 {
     _verify = new VerifyLogin(apiUrl);
     _hasher = new Sha256Hasher();
 }