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