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