/**
  * Counts all associated GrowthGroups
  * @return int
  */
 public function CountGrowthGroups()
 {
     if (is_null($this->intId)) {
         return 0;
     }
     return GrowthGroup::CountByGrowthGroupLocationId($this->intId);
 }