public function actionList()
 {
     $model = new EmployeeModel();
     $employees = $model->getAll();
     return $this->render('list', ['employees' => $employees]);
 }