initial commit

This commit is contained in:
2026-06-25 13:03:45 +06:00
commit 4589f4a8d0
3229 changed files with 941958 additions and 0 deletions

18
app/Model/PaymentType.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
class PaymentType extends AppModel
{
var $name='PaymentType';
function list($conditions = array() )
{
return $this->find('all', array('conditions' => $conditions));
}
}
?>