Example #1
0
        private void PerformTrackDelete()
        {
            var ids = JourneyRepository_.GetJourneyIdsForTrip(SelectedTripId);

            foreach (int id in ids)
            {
                journeyPointRespository_.DeleteJourneyPoints(id);
            }
        }