Files
FHC-Core/application/models/codex/Aufenthaltfoerderung_model.php
2020-11-25 16:31:13 +01:00

15 lines
243 B
PHP

<?php
class Aufenthaltfoerderung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_aufenthaltfoerderung';
$this->pk = 'aufenthaltfoerderung_code';
}
}