function getDynamicData($create = true)
 {
     if (!isset($this->_entries)) {
         $this->_entries = DynamicFormEntry::forClient($this->id)->all();
         if (!$this->_entries && $create) {
             $g = UserForm::getNewInstance();
             $g->setClientId($this->id);
             $g->save();
             $this->_entries[] = $g;
         }
     }
     return $this->_entries ?: array();
 }