-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcliente.class.php
More file actions
53 lines (41 loc) · 753 Bytes
/
Copy pathcliente.class.php
File metadata and controls
53 lines (41 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
class Cliente{
private $id;
private $nome;
private $telefone;
private $email;
private $cpf;
public function __construct(){
}
public function getId(){
return $this->id;
}
public function setId($id){
$this->id = $id;
}
public function getNome(){
return $this->nome;
}
public function setNome($nome){
$this->nome = $nome;
}
public function getTelefone(){
return $this->telefone;
}
public function setTelefone($telefone){
$this->telefone = $telefone;
}
public function getEmail(){
return $this->email;
}
public function setEmail($email){
$this->email = $email;
}
public function getCpf(){
return $this->cpf;
}
public function setCpf($cpf){
$this->cpf = $cpf;
}
}
?>