-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Frederico Gendorf
committed
May 4, 2018
1 parent
04596ef
commit f3a64b0
Showing
1 changed file
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
<?php | ||
|
||
class REPUsuario extends REPHenry { | ||
|
||
protected $pisUsuario; | ||
protected $nomeUsuario; | ||
protected $matriculaUsuario; | ||
protected $biometriaUsuario=1; | ||
|
||
|
||
protected $biometriaUsuario = 1; | ||
|
||
public function __construct() { | ||
parent::__construct(); | ||
} | ||
|
||
public function cadastraUsuario(){ | ||
|
||
public function setPisUsuario($pisUsuario) { | ||
$this->pisUsuario = $pisUsuario; | ||
} | ||
|
||
public function setNomeUsuario($nomeUsuario) { | ||
$this->nomeUsuario = $nomeUsuario; | ||
} | ||
|
||
public function setMatriculaUsuario($matriculaUsuario) { | ||
$this->matriculaUsuario = $matriculaUsuario; | ||
} | ||
|
||
public function cadastraUsuario() { | ||
return $this->queryREP("00+EU+00+1+I[{$this->pisUsuario}[{$this->nomeUsuario}[{$this->biometriaUsuario}[1[{$this->matriculaUsuario}"); | ||
} | ||
public function listaUsuarios(){ | ||
|
||
public function listaUsuarios() { | ||
|
||
} | ||
|
||
|
||
} | ||
|
||
} |