47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
// Специальность, направление подготовки
|
|
class Specialization
|
|
{
|
|
// Код специальности
|
|
private string $eduCode;
|
|
// Название специальности, направления подготовки
|
|
private string $eduName;
|
|
//Уровень образования
|
|
private string $eduLevel;
|
|
//Формы обучения
|
|
private string $eduForm;
|
|
// Численность обучающихся
|
|
// private array $size;
|
|
// Общая численность обучающихся
|
|
private int $contingent;
|
|
|
|
public function __construct() {}
|
|
|
|
public function update(
|
|
string $eduCode,
|
|
string $eduName,
|
|
string $eduLevel,
|
|
string $eduForm,
|
|
// array $size,
|
|
int $contingent
|
|
) : void {
|
|
$this->eduCode = $eduCode;
|
|
$this->eduName = $eduName;
|
|
$this->eduLevel = $eduLevel;
|
|
$this->eduForm = $eduForm;
|
|
// $this->size = $size;
|
|
$this->contingent = $contingent;
|
|
}
|
|
|
|
public function getData() : array
|
|
{
|
|
return [
|
|
"spec_code" => $this->eduCode,
|
|
"spec_name" => $this->eduName,
|
|
"edu_level" => $this->eduLevel,
|
|
"edu_forms"=> $this->eduForm,
|
|
// "size" => $this->size,
|
|
"contingent" => $this->contingent
|
|
];
|
|
}
|
|
} |