diff options
Diffstat (limited to 'tests/unit/Data/SqlMap/domain/C.php')
-rw-r--r-- | tests/unit/Data/SqlMap/domain/C.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/unit/Data/SqlMap/domain/C.php b/tests/unit/Data/SqlMap/domain/C.php new file mode 100644 index 00000000..642f97e9 --- /dev/null +++ b/tests/unit/Data/SqlMap/domain/C.php @@ -0,0 +1,13 @@ +<?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; } +} |