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