returns true if first and second are the same
first
second
bool isTheSame(DateTime first, DateTime second) { return first.day == second.day && first.month == second.month && first.year == second.year; }