Esempio n. 1
0
 function __construct($id, $voucherId, $claimantId, $description, $ledgerId, $claimed, $adjusted)
 {
     $this->id = $id;
     $this->claimant = Employee::GetEmployee($claimantId);
     $this->voucherId = $voucherId;
     $this->description = $description;
     $this->ledger = Ledger::GetLedger($ledgerId);
     $this->claimed = $claimed;
     $this->adjusted = $adjusted;
 }