getClassName(); } public function getModelClass(): string { return Model::class; } public function getEntityClass(): string { return Entity::class; } public function getEntityByCode(string $value): mixed { $this->getModel()->where("Client_Code", $value); return $this->getEntity(); } }