public void EditTour()
 {
     DataServiceTour tour = new DataServiceTour();
     tour.UpdateTour();
 }
        private void SaveCheckList()
        {
            IsFormValid = true;

            this.Tour.RecentRenovations = Utils.Utility.ListToString(RecentRenovations.Select(reno => reno.Name).ToList());
            DataServiceTour dsTour = new DataServiceTour();
            dsTour.UpdateTour();
            EditableObject.EndEdit();
            navigationService.GoBack();
        }