Added Controller to create Anrechnungsantrag + Model Anrechnungbegruendung_model

Signed-off-by: cris-technikum <hainberg@technikum-wien.at>
This commit is contained in:
cris-technikum
2021-04-20 15:56:29 +02:00
parent 5e77e252c7
commit b7a6cefa36
2 changed files with 258 additions and 0 deletions
@@ -0,0 +1,15 @@
<?php
class Anrechnungbegruendung_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_anrechnung_begruendung';
$this->pk = 'begruendung_id';
}
}