dbmsv4 init...3

This commit is contained in:
최준흠 2025-12-12 15:40:40 +09:00
parent e7c1da7ec1
commit ecf833d439
13 changed files with 13 additions and 13 deletions

View File

@ -22,7 +22,7 @@ class GoogleService extends AuthService
{ {
return new GoogleDTO($formDatas); return new GoogleDTO($formDatas);
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return GoogleDTO::class; return GoogleDTO::class;
} }

View File

@ -21,7 +21,7 @@ class LocalService extends AuthService
{ {
return new LocalDTO($formDatas); return new LocalDTO($formDatas);
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return LocalDTO::class; return LocalDTO::class;
} }

View File

@ -19,7 +19,7 @@ class CHASSISService extends EquipmentService
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('CHASSIS'); $this->addClassPaths('CHASSIS');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return CHASSISDTO::class; return CHASSISDTO::class;
} }

View File

@ -19,7 +19,7 @@ class LineService extends EquipmentService
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('Line'); $this->addClassPaths('Line');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return LineDTO::class; return LineDTO::class;
} }

View File

@ -19,7 +19,7 @@ class MylogService extends CommonService implements PipelineStepInterface
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('Mylog'); $this->addClassPaths('Mylog');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return MylogDTO::class; return MylogDTO::class;
} }

View File

@ -19,7 +19,7 @@ class CPUService extends PartType1Service
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('CPU'); $this->addClassPaths('CPU');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return CPUDTO::class; return CPUDTO::class;
} }

View File

@ -20,7 +20,7 @@ class CSService extends PartType2Service
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('CS'); $this->addClassPaths('CS');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return CSDTO::class; return CSDTO::class;
} }

View File

@ -20,7 +20,7 @@ class DISKService extends PartType1Service
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('DISK'); $this->addClassPaths('DISK');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return DISKDTO::class; return DISKDTO::class;
} }

View File

@ -20,7 +20,7 @@ class IPService extends PartType3Service
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('IP'); $this->addClassPaths('IP');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return IPDTO::class; return IPDTO::class;
} }

View File

@ -20,7 +20,7 @@ class RAMService extends PartType1Service
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('RAM'); $this->addClassPaths('RAM');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return RAMDTO::class; return RAMDTO::class;
} }

View File

@ -20,7 +20,7 @@ class SOFTWAREService extends PartType1Service
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('SOFTWARE'); $this->addClassPaths('SOFTWARE');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return SOFTWAREDTO::class; return SOFTWAREDTO::class;
} }

View File

@ -21,7 +21,7 @@ class SWITCHService extends PartType3Service
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('SWITCH'); $this->addClassPaths('SWITCH');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return SWITCHDTO::class; return SWITCHDTO::class;
} }

View File

@ -19,7 +19,7 @@ class UserService extends CommonService
parent::__construct($model); parent::__construct($model);
$this->addClassPaths('User'); $this->addClassPaths('User');
} }
protected function getDTOClass(): string public function getDTOClass(): string
{ {
return UserDTO::class; return UserDTO::class;
} }