| 123456789101112131415161718 |
- <?php
- namespace App\Jobs;
- use App\Services\AssociadoImportService;
- class SyncAfastamentosJob extends BaseImportJob
- {
- protected function getImportType(): string
- {
- return 'afastamento';
- }
- protected function runSync(string $filePath): array
- {
- return app(AssociadoImportService::class)->syncAfastamentosFromExcel($filePath, $this->userId);
- }
- }
|