class FooController extends AppController { var $components = array('ModelLoader'); function index($id) { $this->ModelLoader->setController($this); $this->ModelLoader->load('Product'); $this->Product->read(null, $id); $this->ModelLoader->load('Solution', 'Solu'); $this->Solu->read(null, $id); } }