Files
FHC-Core/application/models/education/Anrechnungbegruendung_model.php
2021-04-20 16:00:14 +02:00

16 lines
238 B
PHP

<?php
class Anrechnungbegruendung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_anrechnung_begruendung';
$this->pk = 'begruendung_id';
}
}