Files
FHC-Core/application/models/education/LePruefung_model.php
Paminger 1a36ce3dff Models
2016-05-04 07:17:07 +02:00

15 lines
209 B
PHP

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