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