Advertisement
DesenvolverBatch

cpesClass.php

Sep 1st, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. class cpesClass {
  4.       private $nome;
  5.       private $dataN;
  6.       private $sexo;
  7.       private $etnia;
  8.                  
  9.                public function __construct($nome, $dataN, $sexo, $etnia){
  10.                     $this->nome = $nome;
  11.                     $this->dataN = $dataN;
  12.                     $this->sexo = $sexo;
  13.                     $this->etnia = $etnia;
  14.            
  15.         }
  16.                  
  17. }
  18.  
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement