update contact recode and clean up

This commit is contained in:
hazim
2019-03-07 15:31:16 +08:00
parent 4848e1bd5b
commit 46fe8430ef
16 changed files with 572 additions and 6 deletions
@@ -0,0 +1,22 @@
<?php
/**
* Created by PhpStorm.
* User: user
* Date: 06/03/2019
* Time: 5:11 PM
*/
namespace App\Http\Controllers\Contacts;
use App\Modules\ControllerLogic\Contacts\ListContactLogic;
class ListContactController
{
public function list(string $type, int $referenceId,ListContactLogic $logic)
{
return $logic->execute($type,$referenceId);
}
}