private void AddRecentRenovationMethod()
 {
     RecentRenovations.Add(new RecentRenov()
     {
         Name = ""
     });
 }
        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();
        }
 private void DeleteRecentRenovationMethod(RecentRenov value)
 {
     RecentRenovations.Remove(value);
 }