static bool isWeekend(DateTime dateTime) { return dateTime.weekday == DateTime.saturday || dateTime.weekday == DateTime.sunday; }