Beispiel #1
0
        public async Task <IActionResult> GetHotelAsync(int id)
        {
            var hotel = await _dictService.GetHotelAsync(new HotelRequest { Id = id }, HttpContext.RequestAborted);

            return(Ok(hotel));
        }