Indicates whether two DateTime objects are in the same month.
bool isSameMonth(DateTime date) { return year == date.year && month == date.month; }