added Aufenthaltsfoerderung_model

This commit is contained in:
alex
2020-11-25 16:31:13 +01:00
parent a86dcbd290
commit 3c2fdc1991
@@ -0,0 +1,14 @@
<?php
class Aufenthaltfoerderung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_aufenthaltfoerderung';
$this->pk = 'aufenthaltfoerderung_code';
}
}