public DataTable getDestinations()
        {
            localhost.WebServiceDBReader dbReader        = new localhost.WebServiceDBReader();
            localhost.Destination[]      destinationList = dbReader.GetDestinations();
            DataTable dtbl = new DataTable();

            dtbl.Columns.Add("Destination No.");
            dtbl.Columns.Add("City");
            dtbl.Columns.Add("Country");
            dtbl.Columns.Add("Hotel");


            foreach (localhost.Destination d in destinationList)
            {
                var row = dtbl.NewRow();
                row["Destination No."] = d.destinationNbr;
                row["City"]            = d.city;
                row["Country"]         = d.country;
                row["Hotel"]           = d.hotel;
                dtbl.Rows.Add(row);
            }
            return(dtbl);
        }