示例#1
0
 public function __construct($id, $titre, $table, $banque_name, $numero, $type_compte)
 {
     parent::__construct($id, $titre, $table);
     $this->banque_name = $banque_name;
     $this->numero = $numero;
     $this->type_compte = $type_compte;
 }
示例#2
0
 public function __construct($id, $titre, $table, $titulaire, $numero, $date_expiration, $type_cb)
 {
     parent::__construct($id, $titre, $table);
     $this->titulaire = $titulaire;
     $this->numero = $numero;
     $this->date_expiration = $date_expiration;
     $this->type_cb = $type_cb;
 }
示例#3
0
 public function __construct($id, $titre, $table, $utilisateur, $password, $url, $description)
 {
     parent::__construct($id, $titre, $table);
     $this->utilisateur = $utilisateur;
     $this->password = $password;
     $this->url = $url;
     $this->description = $description;
 }
示例#4
0
 public function __construct($id, $titre, $table, $application, $version, $description, $societe, $url, $numero, $clef, $date_achat, $nom, $email, $notes)
 {
     parent::__construct($id, $titre, $table);
     $this->application = $application;
     $this->version = $version;
     $this->description = $description;
     $this->societe = $societe;
     $this->url = $url;
     $this->numero = $numero;
     $this->clef = $clef;
     $this->date_achat = $date_achat;
     $this->nom = $nom;
     $this->email = $email;
     $this->notes = $notes;
 }