Files
FHC-Core/application/models/crm/Preinteressentstudiengang_model.php
2024-10-17 15:34:00 +02:00

15 lines
273 B
PHP

<?php
class Preinteressentstudiengang_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_preinteressentstudiengang';
$this->pk = array('preinteressent_id', 'studiengang_kz');
}
}