14 lines
232 B
PHP
Executable file
14 lines
232 B
PHP
Executable file
<?php
|
|
class CustomerCategory extends AppModel {
|
|
|
|
var $name = 'CustomerCategory';
|
|
|
|
var $hasMany = array('Customer'=>array('className'=>'Customer',
|
|
'foreignKey'=>'customer_category_id'));
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|