public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'Prenotazione_Parcheggio';
     $this->keytable = 'id';
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'UserRecovery';
     $this->keytable = 'Email';
 }
Ejemplo n.º 3
0
 public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'Prenotazione';
     $this->keytable = 'id';
     $this->resultClass = 'EPrenotazione';
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     USingleton::getInstances('FDatabase');
     $this->table = 'Utente';
     $this->keytable = 'email';
     $this->resultClass = 'EUtente';
 }