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