feat: filter teamers by training attendances

This commit is contained in:
Björn Fromme
2024-07-15 14:44:05 +02:00
parent 5a0c998d2b
commit 611f2b8eb8
5 changed files with 25 additions and 0 deletions
+11
View File
@@ -13,6 +13,7 @@ class TeamerFilterDto extends AbstractFilterDto
protected string $pickupId = '';
protected bool $skiLicense = false;
protected bool $snowboardLicense = false;
protected bool $noTrainings = false;
public function getName(): ?string
{
@@ -97,4 +98,14 @@ class TeamerFilterDto extends AbstractFilterDto
return $this;
}
public function hasNoTrainings(): bool
{
return $this->noTrainings;
}
public function setNoTrainings(bool $noTrainings): void
{
$this->noTrainings = $noTrainings;
}
}