DigipostClientLibWebapp.Controllers.IdentifyController.IdentifyById C# (CSharp) 메소드

IdentifyById() 공개 메소드

public IdentifyById ( IdentifyModel identifyModel ) : Task
identifyModel DigipostClientLibWebapp.Models.IdentifyModel
리턴 Task
        public async Task<ActionResult> IdentifyById(IdentifyModel identifyModel)
        {
            var identification = new Identification(new RecipientById(identifyModel.IdentificationType, identifyModel.IdentificationValue));
            
            var result = await _digipostService.Identify(identification);

            return PartialView("IdentificationResult", result);
        }