public function readIfExists($id)
 {
     if ($this->_mapper->exists($id)) {
         $this->_mapper->read($this, $id);
         return true;
     } else {
         return false;
     }
 }