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