示例#1
0
        public async Task <Guid> Buy()
        {
            var userId = User.FindFirst(ClaimTypes.NameIdentifier)?.Value; //TODO move to currentUserContext

            return(await _packService.Buy(new Guid(userId)));
        }