f1 = $f1; $this->f2 = $f2; } } interface DataAccessLayer { public function getOneRecord($f1); public function getAllRecords(); } interface Presenter { public function start(); public function one($o); public function finish(); } interface Application { public function run(); } ?>