function getList($email)
 {
     $this->db->query($this->table, ["*"], array("email" => $email));
     $r = array();
     while ($row = $this->db->getRow()) {
         $art = new Art();
         $art->set($row);
         $r[] = $art;
     }
     return $r;
 }