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