dbmsv4 init...3
This commit is contained in:
parent
e7c1da7ec1
commit
ecf833d439
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user