getClassName(); } public function getModelClass(): string { return Model::class; } public function getEntityClass(): string { return Entity::class; } public function getCountByServiceCode(string $service_code): int { $this->getModel()->where("service_code", $service_code); return $this->getCount(); } public function getCountByClientCode(string $client_code): int { $this->getModel()->where("client_code", $client_code); return $this->getCount(); } }