Update list on change event
[infodrom.org/service.infodrom.org] / class / accounting.class.php
1 <?php
2
3 class Accounting extends AccountTable {
4
5   public function __construct($id)
6   {
7     $this->valuecolumn = 'value_eur';
8     parent::__construct('account', $id);
9   }
10
11 }
12
13 ?>