Feat: Add assignment filtering for teamers
This commit is contained in:
@@ -17,7 +17,12 @@ class AssignmentFilterDto
|
||||
private ?JobProfile $jobProfile = null;
|
||||
private ?Destination $destination = null;
|
||||
private ?int $duration = null;
|
||||
private bool $reset = false;
|
||||
private bool $reset;
|
||||
|
||||
public function __construct(bool $reset = false)
|
||||
{
|
||||
$this->reset = $reset;
|
||||
}
|
||||
|
||||
public function getDateFrom(): ?\DateTimeImmutable
|
||||
{
|
||||
@@ -83,11 +88,4 @@ class AssignmentFilterDto
|
||||
{
|
||||
return $this->reset;
|
||||
}
|
||||
|
||||
public function setReset(bool $reset): static
|
||||
{
|
||||
$this->reset = $reset;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user