Example #1
0
        public async Task <IActionResult> Test(VmQuestions vmQuestions)
        {
            vmQuestions.CustId = Session.CustId;
            var result = await _apiHandler.CheckResult(vmQuestions);

            if (result != null)
            {
                return(View("Result", result));
            }
            return(View());
        }