public function deleteKommentar()
 {
     $this->kommentar = new Model\Kommentar($this->request->id);
     $this->kommentar->delete();
     $this->request->entity = $this->kommentar->ko_element_tabelle;
     $this->request->id = $this->kommentar->ko_element_id;
     $this->kommentar->updateEntityCount();
     $this->kommentare = Model\Kommentar::loadFuer($this->request->entity, $this->request->id);
 }