@@ 48-58 (lines=11) @@ | ||
45 | */ |
|
46 | public $showRaaContactInformationOption; |
|
47 | ||
48 | public function __construct( |
|
49 | InstitutionConfigurationId $institutionConfigurationId, |
|
50 | Institution $institution, |
|
51 | UseRaLocationsOption $useRaLocationsOption, |
|
52 | ShowRaaContactInformationOption $showRaaContactInformationOption |
|
53 | ) { |
|
54 | $this->institutionConfigurationId = $institutionConfigurationId; |
|
55 | $this->institution = $institution; |
|
56 | $this->useRaLocationsOption = $useRaLocationsOption; |
|
57 | $this->showRaaContactInformationOption = $showRaaContactInformationOption; |
|
58 | } |
|
59 | ||
60 | public static function deserialize(array $data) |
|
61 | { |
@@ 56-66 (lines=11) @@ | ||
53 | * @param ShowRaaContactInformationOption $showRaaContactInformationOption |
|
54 | * @param RaLocation[] $raLocations |
|
55 | */ |
|
56 | public function __construct( |
|
57 | Institution $institution, |
|
58 | UseRaLocationsOption $useRaLocationsOption, |
|
59 | ShowRaaContactInformationOption $showRaaContactInformationOption, |
|
60 | array $raLocations |
|
61 | ) { |
|
62 | $this->institution = $institution; |
|
63 | $this->showRaaContactInformationOption = $showRaaContactInformationOption; |
|
64 | $this->useRaLocationsOption = $useRaLocationsOption; |
|
65 | $this->raLocations = $raLocations; |
|
66 | } |
|
67 | ||
68 | /** |
|
69 | * @return RemoveInstitutionConfigurationByUnnormalizedIdCommand |