_clientService) { $this->_clientService = new ClientService($this->request); } return $this->_clientService; } //Index,FieldForm관련 protected function getFormFieldOption(string $field, array $options = []): array { switch ($field) { case 'clientinfo_uid': foreach ($this->getClientService()->getEntities() as $entity) { $options[$entity->getPK()] = $entity->getTitle(); } break; default: $options = parent::getFormFieldOption($field, $options); break; } return $options; } }