Files
alrahma_sunday_school_api/app/Services/SchoolIds/SchoolIdGenerationService.php
T
2026-06-11 11:46:12 -04:00

21 lines
438 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();
}
}