mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-14 13:32:53 +00:00
16 lines
238 B
PHP
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';
|
|
}
|
|
}
|