コード例 #1
0
        public async Task <ActionResult <IsPersonFilledUpResponse> > IsPersonFilledUp(Guid?personUid)
        {
            var uid = personUid ?? new Guid(HttpContext.Request.Headers[AuthorizationHeaders.PersonUid].First());

            return(new IsPersonFilledUpResponse {
                IsPersonFilledUp = await _personLogic.IsPersonFilledUp(uid)
            });
        }