So I have a dateTimePicker which is labeled as pickUpTime.
DateTime pickUpTime = dateTimePicker1.Value.Date.AddHours(pickUpTimePicker.Value.Hour);
Which lets the user select a date and time and assigns it to pickUpTime.
I am trying to write a statement that will execute and add an extra charge if the pickUpTime is in between a range of times. Say 00:00 and 06:59 or 18:00 and 23:59.