Repo Interface für tests
This commit is contained in:
@@ -2,19 +2,19 @@
|
||||
|
||||
namespace MintyPHP\Service\Settings;
|
||||
|
||||
use MintyPHP\Repository\Access\RoleRepository;
|
||||
use MintyPHP\Repository\Org\DepartmentRepository;
|
||||
use MintyPHP\Repository\Settings\SettingRepository;
|
||||
use MintyPHP\Repository\Tenant\TenantRepository;
|
||||
use MintyPHP\Repository\Access\RoleRepositoryInterface;
|
||||
use MintyPHP\Repository\Org\DepartmentRepositoryInterface;
|
||||
use MintyPHP\Repository\Settings\SettingRepositoryInterface;
|
||||
use MintyPHP\Repository\Tenant\TenantRepositoryInterface;
|
||||
use MintyPHP\Support\Crypto;
|
||||
|
||||
class SettingService
|
||||
{
|
||||
public function __construct(
|
||||
private readonly SettingRepository $settingRepository,
|
||||
private readonly TenantRepository $tenantRepository,
|
||||
private readonly RoleRepository $roleRepository,
|
||||
private readonly DepartmentRepository $departmentRepository,
|
||||
private readonly SettingRepositoryInterface $settingRepository,
|
||||
private readonly TenantRepositoryInterface $tenantRepository,
|
||||
private readonly RoleRepositoryInterface $roleRepository,
|
||||
private readonly DepartmentRepositoryInterface $departmentRepository,
|
||||
private readonly ThemeConfigService $themeConfigService
|
||||
) {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user