public function handle(CreateTextOptionCommand $command)
 {
     $textOption = new TextOption($command->getTextOptionId());
     $textOption->setName($command->getName());
     $textOption->setDescription($command->getDescription());
     $textOption->setSortOrder($command->getSortOrder());
     $textOption->setType($command->getTextOptionType());
     $this->optionService->createTextOption($textOption);
 }