示例#1
0
 public function selectUsuario(UsuarioVO $vo)
 {
     $dao = new UsuarioDAO();
     try {
         return $dao->selectOne($vo);
     } catch (Exception $e) {
         throw new Exception($e->getMessage());
     }
 }