public RegisterController(AuthenticationFrameworkContext context, IUserRegistration userRegistration, IReCaptcha reCaptcha)
 {
     _context          = context;
     _userRegistration = userRegistration;
     _reCaptcha        = reCaptcha;
 }
예제 #2
0
 public LoginController(AuthenticationFrameworkContext context, IUserLogin userLogin, IReCaptcha reCaptcha)
 {
     _context   = context;
     _userLogin = userLogin;
     _reCaptcha = reCaptcha;
 }