public function __construct(OptionType $type)
 {
     parent::__construct($type);
     $this->entityDTO->isSelect = $this->entity->isSelect();
     $this->entityDTO->isRadio = $this->entity->isRadio();
     $this->entityDTO->isCheckbox = $this->entity->isCheckbox();
 }
 public function __construct(PromotionType $type)
 {
     parent::__construct($type);
     $this->entityDTO->isFixed = $this->entity->isFixed();
     $this->entityDTO->isPercent = $this->entity->isPercent();
     $this->entityDTO->isExact = $this->entity->isExact();
 }
 public function __construct(ShipmentCarrierType $type)
 {
     parent::__construct($type);
     $this->entityDTO->isUnknown = $this->entity->isUnknown();
     $this->entityDTO->isUps = $this->entity->isUps();
     $this->entityDTO->isUsps = $this->entity->isUsps();
     $this->entityDTO->isFedex = $this->entity->isFedex();
 }
 public function __construct(TextOptionType $type)
 {
     parent::__construct($type);
     $this->entityDTO->isText = $this->entity->isText();
     $this->entityDTO->isTextarea = $this->entity->isTextarea();
     $this->entityDTO->isFile = $this->entity->isFile();
     $this->entityDTO->isDate = $this->entity->isDate();
     $this->entityDTO->isTime = $this->entity->isTime();
     $this->entityDTO->isDateTime = $this->entity->isDateTime();
 }