cmc-sales/app/models/principle_contact.php
2013-03-23 16:25:52 +11:00

17 lines
397 B
PHP
Executable file

<?php
class PrincipleContact extends AppModel {
var $name = 'PrincipleContact';
//The Associations below have been created with all possible keys, those that are not needed can be removed
var $belongsTo = array(
'Principle' => array('className' => 'Principle',
'foreignKey' => 'principle_id',
'conditions' => '',
'fields' => '',
'order' => ''
)
);
}
?>