Checks whether this date has the same day and month as the given dateTime.
dateTime
Year is intentionally ignored.
bool isSameDate(DateTime dateTime) { return day == dateTime.day && month == dateTime.month; }