public async Task UpdateCountryOfResidence(CountryOfResidenceViewModel model)
 {
     await _srvKycManager.ChangeCountryAsync(CurrentClientId, model.Country, RecordChanger.Client);
 }
예제 #2
0
        public async Task <ActionResult> CountryOfResidence(CountryOfResidenceViewModel model)
        {
            await _profileActionHandler.UpdateCountryOfResidence(model);

            return(RedirectToAction("AddressInformation", new { returnUrl = model.ReturnUrl }));
        }