示例#1
0
 public function __construct($nom, $prenom, $promotion, $numEtu)
 {
     parent::__construct($nom, $prenom);
     $this->_promotion = setPromotion($promotion);
     (int) $numEtu;
     $this->_numEtu = setNumEtu($numEtu);
 }
 public function __construct($id, $nom, $adresse, $email)
 {
     parent::__construct($email);
     $this->id = $id;
     $this->nom = $nom;
     $this->adresse = $adresse;
 }
示例#3
0
 function __construct($id, $nom, $prenom, $mail, $exprecom, $inactif, $encadrement)
 {
     parent::__construct($id, $nom, $prenom, $mail);
     $this->exprecom = $exprecom;
     $this->inactif = $inactif;
     $this->encadrement = $encadrement;
 }
 public function __construct($nom, $prenom, $entreprise)
 {
     parent::__construct($nom, $prenom);
     (int) $entreprise;
     $this->_entreprise = setEntreprise($entreprise);
 }
示例#5
0
 public function __construct($nom, $prenom, $role)
 {
     parent::__construct($nom, $prenom);
     $this->_role = setRole($role);
 }
示例#6
0
 function __construct($id, $nom, $prenom, $mail, $annee)
 {
     parent::__construct($id, $nom, $prenom, $mail);
     $this->anneediplome = $annee;
 }