Remove unneeded files

This commit is contained in:
Matt Young 2024-07-12 12:01:09 -05:00
parent c080f05bf3
commit c5860b2004
2 changed files with 0 additions and 55 deletions

View File

@ -1,24 +0,0 @@
<?php
namespace App\Services;
use App\Models\Event;
use App\Models\Seat;
use App\Models\SeatingLimit;
use Illuminate\Support\Facades\Cache;
class SeatingService
{
protected $limitsCacheKey = 'acceptanceLimits';
protected $tabulationService;
/**
* Create a new class instance.
*/
public function __construct(TabulationService $tabulationService)
{
$this->tabulationService = $tabulationService;
}
}

View File

@ -1,31 +0,0 @@
<?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;
}
}