public ActionResult HotelSearch(int noOfPeople, int noOfRooms, string hotelLocation, string currentLocation)
        {
            HotelClient        hotel         = new HotelClient(noOfPeople, noOfRooms, hotelLocation, currentLocation);
            BaseHotelSearchRsp hotelResponse = hotel.HotelAvailabilty();

            HotelSearchResult[]  response = hotelResponse.HotelSearchResult;
            List <HotelProperty> result   = new List <HotelProperty>();

            foreach (HotelSearchResult rsp in response)
            {
                foreach (HotelProperty prop in rsp.HotelProperty)
                {
                    result.Add(prop);
                }
            }

            ViewBag.result = result;

            return(View());
        }