You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
556 B
21 lines
556 B
<?php
|
|
|
|
namespace App\Domains\Academic\Actions\Curriculum;
|
|
|
|
use App\Domains\Academic\DTOs\Curriculum\RegisterStudyProgramDTO;
|
|
use App\Domains\Academic\Models\StudyProgram;
|
|
|
|
class RegisterStudyProgram
|
|
{
|
|
public function execute(RegisterStudyProgramDTO $dto): void
|
|
{
|
|
StudyProgram::create([
|
|
'name' => $dto->name,
|
|
'code' => $dto->code,
|
|
'level' => $dto->level,
|
|
'status' => $dto->status,
|
|
'faculty_id' => $dto->facultyId,
|
|
'external_id' => $dto->externalId,
|
|
]);
|
|
}
|
|
}
|
|
|