id; } public function getName(): string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getLocomotiveSeries() { return $this->locomotive_series; } public function setLocomotiveSeries(string $locomotive_series): self { $this->locomotive_series = $locomotive_series; return $this; } public function getSectionNumber() { return $this->section_number; } public function setSectionNumber(string $section_number): self { $this->section_number = $section_number; return $this; } public function getSectionSubnumber(): string { return $this->section_subnumber; } public function setSectionSubnumber(string $section_subnumber): self { $this->section_subnumber = $section_subnumber; return $this; } public function getDcRepair(): string { return $this->dc_repair; } public function setDcRepair(string $dc_repair): self { $this->dc_repair = $dc_repair; return $this; } public function getTypeRepair(): string { return $this->type_repair; } public function setTypeRepair(string $type_repair): self { $this->type_repair = $type_repair; return $this; } public function getDateStartRepair(): \DateTimeInterface { return $this->date_start_repair; } public function setDateStartRepair(\DateTimeInterface $date_start_repair): self { $this->date_start_repair = $date_start_repair; return $this; } }