function($id_task)
{
$note = new \bbn\Appui\Note($this->db);
$ids = $this->getCommentsIds($id_task);
$r = [];
foreach ( $ids as $id_note ){
array_push($r, $note->get($id_note));
}
return $r;
}
return false;
}