Beispiel #1
0
 public function __construct(UUID $roomId, $name, $seatCapacity)
 {
     parent::__construct($roomId);
     $this->roomName = $name;
     $this->seatCapacity = $seatCapacity;
 }
Beispiel #2
0
 public function __construct(UUID $roomId, $newName)
 {
     parent::__construct($roomId);
     $this->newName = $newName;
 }