Rewrite tabulation #14

Merged
okorpheus merged 43 commits from rewrite-tabulation into master 2024-07-14 05:36:29 +00:00
2 changed files with 0 additions and 55 deletions
Showing only changes of commit c5860b2004 - Show all commits

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;
}
}