Files
izyim/app/Classes/Modules/ControllersLogic/Companies/SearchCompanyLogic.php
2019-05-08 11:31:00 +08:00

35 lines
678 B
PHP

<?php
/**
* Created by PhpStorm.
* User: user
* Date: 29/04/2019
* Time: 2:11 PM
*/
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);
}
}