17 lines
256 B
PHP
17 lines
256 B
PHP
|
<?php
|
||
|
namespace app\service;
|
||
|
|
||
|
use app\model\Department;
|
||
|
|
||
|
class DepartmentService
|
||
|
{
|
||
|
/**
|
||
|
* @Inject
|
||
|
* @var Department
|
||
|
*/
|
||
|
private $department;
|
||
|
public function allList():array
|
||
|
{
|
||
|
return $this->department->allList();
|
||
|
}
|
||
|
}
|