コード例 #1
0
 /**
  * 
  * @param Integer $id
  * @return UsuarioDTO
  */
 public function verUnUsuario($id)
 {
     try {
         $this->uDao = new UsuarioDAO();
         $this->uDto = $this->uDao->verUno($id);
         return $this->uDto;
     } catch (Exception $ex) {
         return $ex->getMessage();
     }
 }