18 lines
214 B
PHP
18 lines
214 B
PHP
<?php
|
|
|
|
class PaymentType extends AppModel
|
|
{
|
|
var $name='PaymentType';
|
|
|
|
|
|
|
|
function list($conditions = array() )
|
|
{
|
|
return $this->find('all', array('conditions' => $conditions));
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
?>
|