mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-21 13:34:13 +00:00
33 lines
630 B
PHP
33 lines
630 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: user
|
|
* Date: 08/03/2019
|
|
* Time: 4:05 PM
|
|
*/
|
|
|
|
namespace App\Classes\Modules\ControllersLogic\Accounts;
|
|
|
|
|
|
use App\Classes\Modules\Accounts\Services\ListUserAccount;
|
|
|
|
class ListUserAccountLogic
|
|
{
|
|
/** @var ListUserAccount */
|
|
private $listUserAccount;
|
|
|
|
/**
|
|
* ListUserAccountLogic constructor.
|
|
* @param ListUserAccount $listUserAccount
|
|
*/
|
|
public function __construct(ListUserAccount $listUserAccount)
|
|
{
|
|
$this->listUserAccount = $listUserAccount;
|
|
}
|
|
|
|
|
|
public function execute()
|
|
{
|
|
return $this->listUserAccount->execute();
|
|
}
|
|
} |