Files
alrahma_sunday_school_api/app/Services/SchoolIds/SchoolIdGenerationService.php
T
2026-03-10 00:48:32 -04:00

23 lines
447 B
PHP

<?php
namespace App\Services\SchoolIds;
use App\Services\SchoolIdService;
class SchoolIdGenerationService
{
public function __construct(private SchoolIdService $schoolIdService)
{
}
public function generateStudentId(): string
{
return $this->schoolIdService->generateStudentSchoolId();
}
public function generateUserId(): string
{
return $this->schoolIdService->generateUserSchoolId();
}
}