mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
29 lines
595 B
PHP
29 lines
595 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\ControllersLogic\Companies;
|
|
|
|
|
|
use App\Classes\Modules\Companies\Services\SearchesCompany;
|
|
use Illuminate\Http\Request;
|
|
|
|
class SearchCompanyLogic
|
|
{
|
|
/** @var SearchesCompany */
|
|
private $SearchesCompany;
|
|
|
|
/**
|
|
* SearchCompanyLogic constructor.
|
|
* @param SearchesCompany $SearchesCompany
|
|
*/
|
|
public function __construct(SearchesCompany $SearchesCompany)
|
|
{
|
|
$this->SearchesCompany = $SearchesCompany;
|
|
}
|
|
|
|
|
|
public function execute(Request $request){
|
|
|
|
return $this->SearchesCompany->execute($request);
|
|
}
|
|
|
|
} |