32 lines
671 B
PHP
32 lines
671 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Entry;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\Session;
|
|
|
|
class TabulationService
|
|
{
|
|
protected AuditionService $auditionService;
|
|
|
|
protected EntryService $entryService;
|
|
|
|
protected ScoreService $scoreService;
|
|
|
|
/**
|
|
* Create a new class instance.
|
|
*/
|
|
public function __construct(
|
|
AuditionService $auditionService,
|
|
ScoreService $scoreService,
|
|
EntryService $entryService
|
|
) {
|
|
$this->auditionService = $auditionService;
|
|
$this->scoreService = $scoreService;
|
|
$this->entryService = $entryService;
|
|
}
|
|
|
|
}
|