isDayYangGong method

bool isDayYangGong()

Implementation

bool isDayYangGong() {
  for (FotoFestival f in getFestivals()) {
    if ('杨公忌' == f.getName()) {
      return true;
    }
  }
  return false;
}