27 lines
470 B
PHP
27 lines
470 B
PHP
<?php
|
|
|
|
namespace lib\Entities;
|
|
|
|
use lib\Core\Entity;
|
|
|
|
class ServiceEntity extends Entity
|
|
{
|
|
public function __construct($datas)
|
|
{
|
|
parent::__construct($datas);
|
|
} //
|
|
|
|
public function getServiceCode(): mixed
|
|
{
|
|
return $this->service_code;
|
|
}
|
|
public function getMemberCode(): mixed
|
|
{
|
|
return $this->service_manager;
|
|
}
|
|
public function getClientCode(): mixed
|
|
{
|
|
return $this->client_code;
|
|
}
|
|
} //Class
|