33 lines
940 B
PHP
33 lines
940 B
PHP
<?php
|
|
|
|
namespace App\Services\Service;
|
|
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
use App\Interfaces\Equipment\ServerPartInterface;
|
|
use App\Services\Customer\ServiceService;
|
|
|
|
|
|
class ServicePart extends ServiceService implements ServerPartInterface
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
//서버연결정보용 등록
|
|
public function createServerPart(ServerPartEntity $serverPartEntity, array $serverPartDatas = []): ServerPartEntity
|
|
{
|
|
$formDatas = [];
|
|
return $serverPartEntity;
|
|
}
|
|
public function modifyServerPart(ServerPartEntity $serverPartEntity, array $serverPartDatas = []): ServerPartEntity
|
|
{
|
|
$formDatas = [];
|
|
return $serverPartEntity;
|
|
}
|
|
public function deleteServerPart(ServerPartEntity $serverPartEntity, array $serverPartDatas = []): ServerPartEntity
|
|
{
|
|
$formDatas = [];
|
|
return $serverPartEntity;
|
|
}
|
|
}
|