all(); return $tasksEntity; } public function getProjecttypes() { $projecttypesEntity = Projecttypes::find()->all(); return $projecttypesEntity; } public function getTaskstypes() { $tasktypesEntity = Tasktypes::find()->all(); return $tasktypesEntity; } public function getAccounts() { $AccountsEntity = Accounts::find()->all(); return $AccountsEntity; } public function getJobtypes() { $JobtypesEntity = Jobtypes::find()->all(); return $JobtypesEntity; } public function getJobtypesAccounts() { $JobtypesAccountsEntity = AccountsJobtypes::find()->all(); return $JobtypesAccountsEntity; } public function getSections() { $SectionsEntity = Sections::find()->all(); return $SectionsEntity; } }