コード例 #1
0
        public async Task <IActionResult> Get([FromRoute] int id)
        {
            var item = await _heroAppService
                       .GetByIdAsync(id)
                       .ConfigureAwait(false);

            return(Ok(item));
        }
コード例 #2
0
 public async Task <IActionResult> Get([FromRoute] int id)
 {
     return(OkOrNotFound(await _heroAppService
                         .GetByIdAsync(id)
                         .ConfigureAwait(false)));
 }