dbmsv2 init...1
This commit is contained in:
parent
3d7ff7bbfb
commit
fe0002fc74
@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
namespace App\Interfaces\Equipment;
|
namespace App\Interfaces\Equipment;
|
||||||
|
|
||||||
interface EquipmentInterFace {}
|
interface EquipmentInterface {}
|
||||||
@ -4,7 +4,7 @@ namespace App\Interfaces\Equipment;
|
|||||||
|
|
||||||
use App\Entities\Equipment\ServerPartEntity;
|
use App\Entities\Equipment\ServerPartEntity;
|
||||||
|
|
||||||
interface ServerPartInterface extends EquipmentInterFace
|
interface ServerPartInterface extends EquipmentInterface
|
||||||
{
|
{
|
||||||
public function setServerPart(ServerPartEntity $serverPartEntity, mixed $uid, string $status): mixed;
|
public function setServerPart(ServerPartEntity $serverPartEntity, mixed $uid, string $status): mixed;
|
||||||
}
|
}
|
||||||
@ -5,10 +5,10 @@ namespace App\Services\Customer;
|
|||||||
use App\Entities\Customer\PaymentEntity;
|
use App\Entities\Customer\PaymentEntity;
|
||||||
use App\Entities\Equipment\ServerPartEntity;
|
use App\Entities\Equipment\ServerPartEntity;
|
||||||
use App\Helpers\Customer\PaymentHelper;
|
use App\Helpers\Customer\PaymentHelper;
|
||||||
use App\Interfaces\Equipment\ServerPartInterFace;
|
use App\Interfaces\Equipment\ServerPartInterface;
|
||||||
use App\Models\Customer\PaymentModel;
|
use App\Models\Customer\PaymentModel;
|
||||||
|
|
||||||
class PaymentService extends CustomerService implements ServerPartInterFace
|
class PaymentService extends CustomerService implements ServerPartInterface
|
||||||
{
|
{
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace App\Services\Equipment;
|
namespace App\Services\Equipment;
|
||||||
|
|
||||||
use App\Entities\Customer\PaymentEntity;
|
|
||||||
use App\Entities\Equipment\ServerEntity;
|
use App\Entities\Equipment\ServerEntity;
|
||||||
use App\Entities\Equipment\ServerPartEntity;
|
use App\Entities\Equipment\ServerPartEntity;
|
||||||
use App\Helpers\Equipment\ServerPartHelper;
|
use App\Helpers\Equipment\ServerPartHelper;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user