async Task ExecuteSearchCommand()
        {
            string c = (string)city.SelectedItem;

            if (c != null)
            {
                hotellist = await CosmosHotelService.SearchHotel(c);
            }
            else
            {
                return;
            }
        }