Reduction of amount for siblings implemented

This commit is contained in:
2026-04-25 22:31:38 +02:00
parent 8348f677a5
commit 21be212129
11 changed files with 68 additions and 8 deletions

View File

@@ -12,13 +12,16 @@ class SetParticipationFeesRequest {
public ?array $participationFeeThird;
public ?array $participationFeeFourth;
public bool $siblingReduction;
public function __construct(Event $event, array $participationFeeFirst) {
public function __construct(Event $event, array $participationFeeFirst, bool $siblingReduction) {
$this->event = $event;
$this->participationFeeFirst = $participationFeeFirst;
$this->participationFeeSecond = null;
$this->participationFeeThird = null;
$this->participationFeeFourth = null;
$this->siblingReduction = $siblingReduction;
}
}