コード例 #1
0
 public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'Prenotazione_Parcheggio';
     $this->keytable = 'id';
 }
コード例 #2
0
 public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'UserRecovery';
     $this->keytable = 'Email';
 }
コード例 #3
0
 public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'Prenotazione';
     $this->keytable = 'id';
     $this->resultClass = 'EPrenotazione';
 }
コード例 #4
0
ファイル: FUtente.php プロジェクト: mattia1989/CarSharing
 public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'Utente';
     $this->keytable = 'email';
     $this->resultClass = 'EUtente';
 }