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