public TokenModel(HumanCaptchaContext _context, IExceptionManager _exceptionManager)
 {
     this.context          = _context;
     this.exceptionManager = _exceptionManager;
 }
Beispiel #2
0
 public CaptchaController(HumanCaptchaContext _context, IExceptionManager _exceptionManager)
 {
     this.model = new CaptchaModel(_context, _exceptionManager);
     //default length
     this.size = 6;
 }
 public TokenAuthenticationAttribute(HumanCaptchaContext _context, IExceptionManager _exceptionManager)
 {
     this.context          = _context;
     this.exceptionManager = _exceptionManager;
 }
 public DatabaseHandler(HumanCaptchaContext _context, IHostEnvironment _hostEnvironment) : base(_hostEnvironment)
 {
     this.context = _context;
 }
 public ExceptionManager(HumanCaptchaContext _context, IHostEnvironment _hostEnvironment)
 {
     this.context         = _context;
     this.hostEnvironment = _hostEnvironment;
 }
 public TestController(HumanCaptchaContext _context, IExceptionManager _exceptionManager)
 {
     this.context          = _context;
     this.exceptionManager = _exceptionManager;
 }