Exemple #1
0
        public bool SubmitQuestionAnswers(string token, List <SecretQuestionAnswer> answers)
        {
            Context.WebContext.MarkConfidential();
            var process = GetMutiFactorProcess(token);
            var result  = _processService.CheckAllSecretQuestionAnswers(process, answers);

            return(result);
        }
Exemple #2
0
 public bool SubmitAllQuestionAnswers(string token, List<SecretQuestionAnswer> answers) {
   Context.WebContext.MarkConfidential();
   var process = GetActiveProcess(token);
   if(process == null)
     return false;
   var result = _processService.CheckAllSecretQuestionAnswers(process, answers);
   return result; 
 }
        public bool SubmitAllQuestionAnswers(string token, List <SecretQuestionAnswer> answers)
        {
            Context.WebContext.MarkConfidential();
            var session = Context.OpenSession();
            var process = GetActiveProcess(session, token);

            if (process == null)
            {
                return(false);
            }
            var result = _processService.CheckAllSecretQuestionAnswers(process, answers);

            return(result);
        }