first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyExecutive;
|
||||
|
||||
use App\Models\PropertyExecutive;
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
|
||||
class PropertyExecutiveRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyExecutive;
|
||||
|
||||
public function __construct(PropertyExecutive $propertyExecutive)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyExecutive = $propertyExecutive;
|
||||
$this->defaultModel = $this->propertyExecutive;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user