mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
f185c92db7
Signed-off-by: cris-technikum <hainberg@technikum-wien.at>
16 lines
226 B
PHP
16 lines
226 B
PHP
<?php
|
|
|
|
|
|
class Anrechnungstatus_model extends DB_Model
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'lehre.tbl_anrechnungstatus';
|
|
$this->pk = 'status_kurzbz';
|
|
}
|
|
}
|