-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEndereco.php
187 lines (160 loc) · 3.54 KB
/
Endereco.php
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
class Endereco{
private $pais, $estado, $cidade, $bairro, $rua, $casa;
public function Endereco() {}
public function cadastrar($id) {
require 'conectar.php';
$sql = "
INSERT INTO endereco
(pais, estado, cidade, bairro, rua, numero, pk_compania)
VALUES (
'".$this->getPais()."',
'".$this->getEstado()."',
'".$this->getCidade()."',
'".$this->getBairro()."',
'".$this->getRua()."',
'".$this->getCasa()."',
'$id'
);
";
if($conection->query($sql)) {
$conection->close();
return;
}
echo $conection->error;
return false;
}
public function deletar($id) {
require 'conectar.php';
$result = $conection->query("
DELETE FROM endereco
WHERE pk_compania = '".$id."';
");
$conection->close();
return $result;
}
public function atualizar($id) {
require 'conectar.php';
$result = $conection->query("
UPDATE endereco
SET pais = '".$this->getPais()."',
estado = '".$this->getEstado()."',
cidade = '".$this->getCidade()."',
bairro = '".$this->getBairro()."',
rua = '".$this->getRua()."',
numero = '".$this->getCasa()."'
WHERE pk_compania = '".$id."'
");
$conection->close();
return $result;
}
/**
* Get the value of pais
*/
public function getPais()
{
return $this->pais;
}
/**
* Set the value of pais
*
* @return self
*/
public function setPais($pais)
{
if(!empty($pais))
$this->pais = $pais;
else
$pais = 'default';
return $this;
}
/**
* Get the value of estado
*/
public function getEstado()
{
return $this->estado;
}
/**
* Set the value of estado
*
* @return self
*/
public function setEstado($estado)
{
if(!empty($estado))
$this->estado = $estado;
else
$estado = 'default';
return $this;
}
/**
* Get the value of cidade
*/
public function getCidade()
{
return $this->cidade;
}
/**
* Set the value of cidade
*
* @return self
*/
public function setCidade($cidade)
{
$this->cidade = $cidade;
return $this;
}
/**
* Get the value of bairro
*/
public function getBairro()
{
return $this->bairro;
}
/**
* Set the value of bairro
*
* @return self
*/
public function setBairro($bairro)
{
$this->bairro = $bairro;
return $this;
}
/**
* Get the value of rua
*/
public function getRua()
{
return $this->rua;
}
/**
* Set the value of rua
*
* @return self
*/
public function setRua($rua)
{
$this->rua = $rua;
return $this;
}
/**
* Get the value of casa
*/
public function getCasa()
{
return $this->casa;
}
/**
* Set the value of casa
*
* @return self
*/
public function setCasa($casa)
{
$this->casa = $casa;
return $this;
}
}
?>