17 lines
338 B
PHP
17 lines
338 B
PHP
<?php
|
|
|
|
namespace App\Services\Setting;
|
|
|
|
use App\Services\SigdCrudService;
|
|
use App\Models\ReferenceEfSource;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class EfSourceService extends SigdCrudService
|
|
{
|
|
public function __construct(ReferenceEfSource $model)
|
|
{
|
|
parent::__construct($model);
|
|
}
|
|
}
|