public function execute()
 {
     $config = $this->getConfig();
     $datoUsuario = new datoUsuarioTable($config);
     $this->objDatoUsuario = $datoUsuario->getAll();
     // así declaramos la vista a usar
     $this->defineView('datoUsuario', 'index', 'html');
 }
 public function execute()
 {
     $config = $this->getConfig();
     $usuario = new usuarioTable($config);
     $datoUsuario = new datoUsuarioTable($config);
     $this->objUsuario = $usuario->getAll();
     $this->objDatoUsuario = $datoUsuario->getAll();
     $this->defineView('usuario', 'listar', 'html');
 }