-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Criação da classe model Socio [Issue #731]
- Loading branch information
1 parent
d34c276
commit c381b68
Showing
1 changed file
with
215 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,215 @@ | ||
<?php | ||
class Socio{ | ||
private $nome; | ||
private $telefone; | ||
private $email; | ||
private $estado; | ||
private $cidade; | ||
private $bairro; | ||
private $complemento; | ||
private $cep; | ||
private $numeroEndereco; | ||
private $logradouro; | ||
|
||
/** | ||
* Get the value of nome | ||
*/ | ||
public function getNome() | ||
{ | ||
return $this->nome; | ||
} | ||
|
||
/** | ||
* Set the value of nome | ||
* | ||
* @return self | ||
*/ | ||
public function setNome($nome) | ||
{ | ||
$this->nome = $nome; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of telefone | ||
*/ | ||
public function getTelefone() | ||
{ | ||
return $this->telefone; | ||
} | ||
|
||
/** | ||
* Set the value of telefone | ||
* | ||
* @return self | ||
*/ | ||
public function setTelefone($telefone) | ||
{ | ||
$this->telefone = $telefone; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of email | ||
*/ | ||
public function getEmail() | ||
{ | ||
return $this->email; | ||
} | ||
|
||
/** | ||
* Set the value of email | ||
* | ||
* @return self | ||
*/ | ||
public function setEmail($email) | ||
{ | ||
$this->email = $email; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of estado | ||
*/ | ||
public function getEstado() | ||
{ | ||
return $this->estado; | ||
} | ||
|
||
/** | ||
* Set the value of estado | ||
* | ||
* @return self | ||
*/ | ||
public function setEstado($estado) | ||
{ | ||
$this->estado = $estado; | ||
|
||
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 complemento | ||
*/ | ||
public function getComplemento() | ||
{ | ||
return $this->complemento; | ||
} | ||
|
||
/** | ||
* Set the value of complemento | ||
* | ||
* @return self | ||
*/ | ||
public function setComplemento($complemento) | ||
{ | ||
$this->complemento = $complemento; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of cep | ||
*/ | ||
public function getCep() | ||
{ | ||
return $this->cep; | ||
} | ||
|
||
/** | ||
* Set the value of cep | ||
* | ||
* @return self | ||
*/ | ||
public function setCep($cep) | ||
{ | ||
$this->cep = $cep; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of numeroEndereco | ||
*/ | ||
public function getNumeroEndereco() | ||
{ | ||
return $this->numeroEndereco; | ||
} | ||
|
||
/** | ||
* Set the value of numeroEndereco | ||
* | ||
* @return self | ||
*/ | ||
public function setNumeroEndereco($numeroEndereco) | ||
{ | ||
$this->numeroEndereco = $numeroEndereco; | ||
|
||
return $this; | ||
} | ||
|
||
/** | ||
* Get the value of logradouro | ||
*/ | ||
public function getLogradouro() | ||
{ | ||
return $this->logradouro; | ||
} | ||
|
||
/** | ||
* Set the value of logradouro | ||
* | ||
* @return self | ||
*/ | ||
public function setLogradouro($logradouro) | ||
{ | ||
$this->logradouro = $logradouro; | ||
|
||
return $this; | ||
} | ||
} |