auditionadmin/app/Services/DoublerService.php

35 lines
724 B
PHP

<?php
namespace App\Services;
use App\Models\Entry;
use App\Models\Student;
use Illuminate\Contracts\Database\Eloquent\Builder;
use Illuminate\Support\Facades\Cache;
class DoublerService
{
protected $doublersCacheKey = 'doublers';
protected $auditionService;
protected $tabulationService;
protected $seatingService;
/**
* Create a new class instance.
*/
public function __construct(
AuditionService $auditionService,
TabulationService $tabulationService,
SeatingService $seatingService
) {
$this->auditionService = $auditionService;
$this->tabulationService = $tabulationService;
$this->seatingService = $seatingService;
}
}