d2d.emegrendeles.hu/app/Jobs/PricelistPreProcessJob.php
E98Developer 9e90feb662 fishh UI
2026-03-04 15:20:17 +01:00

31 lines
557 B
PHP

<?php
namespace App\Jobs;
use App\Models\PricelistFile;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
class PricelistPreProcessJob implements ShouldQueue
{
use Queueable;
/**
* Create a new job instance.
*/
public function __construct(
public PricelistFile $pricelistFile
)
{
//
}
/**
* Execute the job.
*/
public function handle(): void
{
// Ide kerül majd az üzleti logika a PricelistFileProcessService segítségével
}
}