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