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