summaryrefslogtreecommitdiff
path: root/tests/simple_unit/SqlMap/domain/C.php
blob: 47118d4466283d8f65074a50fef96bcc22b07c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class C
{
	private $_ID='';
	private $_Libelle='';

	public function getID(){ return $this->_ID; }
	public function setID($value){ $this->_ID = $value; }

	public function getLibelle(){ return $this->_Libelle; }
	public function setLibelle($value){ $this->_Libelle = $value; }
}

?>