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.
18 lines
415 B
18 lines
415 B
<?php
|
|
|
|
namespace App\Domains\Academic\Actions\Curriculum;
|
|
|
|
use App\Domains\Academic\DTOs\Curriculum\EstablishFacultyDTO;
|
|
use App\Domains\Academic\Models\Faculty;
|
|
|
|
class EstablishFaculty
|
|
{
|
|
public function execute(EstablishFacultyDTO $dto): void
|
|
{
|
|
Faculty::create([
|
|
'name' => $dto->name,
|
|
'code' => $dto->code,
|
|
'external_id' => $dto->externalId,
|
|
]);
|
|
}
|
|
}
|
|
|