コード例 #1
0
        public async Task <ActionResult <JObject> > GetJobDocumentAsync(string id)
        {
            var result = await _jobManagementService.GetJobDocumentAsync(id);

            return(Ok(result));
        }