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