示例#1
0
        public async Task <IActionResult> GetHotelsAsync()
        {
            var hotels = await _dictService.GetHotelsAsync(HttpContext.RequestAborted);

            return(Ok(hotels));
        }