Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Cliente {
- private $email;
- private $nome;
- private $senha;
- private $pontos;
- private $cpf;
- private $tel;
- private $endereco;
- private $rank;
- private $perfil;
- private $inicio;
- function __construct($email, $nome="", $senha="", $pontos="", $cpf="", $tel="", $endereco="", $rank="", $perfil="", $inicio="") {
- $this->email = $email;
- $this->nome = $nome;
- $this->senha = $senha;
- $this->pontos = $pontos;
- $this->cpf = $cpf;
- $this->tel = $tel;
- $this->endereco = $endereco;
- $this->rank = $rank;
- $this->perfil = $perfil;
- $this->inicio = $inicio;
- }
- function getEmail() {
- return $this->email;
- }
- function getNome() {
- return $this->nome;
- }
- function getSenha() {
- return $this->senha;
- }
- function getPontos() {
- return $this->pontos;
- }
- function getCpf() {
- return $this->cpf;
- }
- function getTel() {
- return $this->tel;
- }
- function getEndereco() {
- return $this->endereco;
- }
- function getRank() {
- return $this->rank;
- }
- function getPerfil() {
- return $this->perfil;
- }
- function getInicio() {
- return $this->inicio;
- }
- function setEmail($email) {
- $this->email = $email;
- }
- function setNome($nome) {
- $this->nome = $nome;
- }
- function setSenha($senha) {
- $this->senha = $senha;
- }
- function setPontos($pontos) {
- $this->pontos = $pontos;
- }
- function setCpf($cpf) {
- $this->cpf = $cpf;
- }
- function setTel($tel) {
- $this->tel = $tel;
- }
- function setEndereco($endereco) {
- $this->endereco = $endereco;
- }
- function setRank($rank) {
- $this->rank = $rank;
- }
- function setPerfil($perfil) {
- $this->perfil = $perfil;
- }
- function setInicio($inicio) {
- $this->inicio = $inicio;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement