Ejemplo n.º 1
0
        public async Task <ActionResult> PersonalDetails(PersonalDetailViewModel model)
        {
            ModelState.Clear();

            _auditLogger.LogSelectedService(model);

            return(View("~\\Views\\PersonalDetails\\InformantType.cshtml", new InformantTypeViewModel(model)));
        }
Ejemplo n.º 2
0
        public async Task <ActionResult> PersonalDetails(PersonalDetailViewModel model)
        {
            ModelState.Clear();
            await _auditLogger.LogSelectedService(model);

            model = await PopulateAddressPickerFields(model);

            return(View("~\\Views\\Outcome\\PersonalDetails.cshtml", model));
        }