bool areSameDay(DateTime one, DateTime two) { return one.year == two.year && one.month == two.month && one.day == two.day; }