Ejemplo n.º 1
0
        private void DateTrip_SelectedDateChanged(object sender, SelectionChangedEventArgs e)
        {
            DateTime selectedDate = (DateTime)dateTrip.SelectedDate;

            if (selectedDate != null)
            {
                Trips = _customer.GetTripsByDate(selectedDate);
                int count = 0;
                for (int i = 0; i < Trips.Count; i++)
                {
                }
            }
        }