/**
  * Counts all associated DleTagsesAsNews
  * @return int
  */
 public function CountDleTagsesAsNews()
 {
     if (is_null($this->intId)) {
         return 0;
     }
     return DleTags::CountByNewsId($this->intId);
 }