/**
  * Counts all associated ShowcaseItems
  * @return int
  */
 public function CountShowcaseItems()
 {
     if (is_null($this->intId)) {
         return 0;
     }
     return ShowcaseItem::CountByPersonId($this->intId);
 }