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