Validates if a business days count is valid (non-negative)
Returns true if the count is valid, false otherwise
static bool isValidBusinessDaysCount(int days) { return days >= 0; }