public IActionResult Hotel(Guid id)
        {
            var hotel = dictService.FindHotel(id);

            if (hotel == null)
            {
                return(NotFound());
            }
            return(Ok(hotel));
        }