mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-09-02 03:13:55 +00:00
Cleaned-BackEnd-Contact
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: user
|
||||
* Date: 09/05/2019
|
||||
* Time: 11:51 AM
|
||||
*/
|
||||
|
||||
namespace App\Modules\ControllerLogic\Contacts;
|
||||
|
||||
|
||||
use App\Classes\Modules\Contacts\Services\DeletesContact;
|
||||
|
||||
class DeleteContactLogic
|
||||
{
|
||||
|
||||
/** @var DeletesContact */
|
||||
private $DeletesContact;
|
||||
|
||||
/**
|
||||
* DeleteContactLogic constructor.
|
||||
* @param DeletesContact $DeletesContact
|
||||
*/
|
||||
public function __construct(DeletesContact $DeletesContact)
|
||||
{
|
||||
$this->DeletesContact = $DeletesContact;
|
||||
}
|
||||
|
||||
|
||||
public function execute(String $id){
|
||||
return $this->DeletesContact->execute($id);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user