first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
use App\Models\PropertyWebComponentMapping;
|
||||
|
||||
class PropertyWebComponentMappingRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyWebComponentMapping;
|
||||
|
||||
public function __construct(PropertyWebComponentMapping $propertyWebComponentMapping)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyWebComponentMapping = $propertyWebComponentMapping;
|
||||
$this->defaultModel = $this->propertyWebComponentMapping;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
use App\Models\PropertyWebComponent;
|
||||
|
||||
class PropertyWebComponentRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyWebComponent;
|
||||
|
||||
public function __construct(PropertyWebComponent $propertyWebComponent)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyWebComponent = $propertyWebComponent;
|
||||
$this->defaultModel = $this->propertyWebComponent;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
use App\Models\PropertyWebGroup;
|
||||
|
||||
class PropertyWebGroupRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyWebGroup;
|
||||
|
||||
public function __construct(PropertyWebGroup $propertyWebGroup)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyWebGroup = $propertyWebGroup;
|
||||
$this->defaultModel = $this->propertyWebGroup;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Models\PropertyWebMetaMapping;
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
|
||||
class PropertyWebMetaMappingRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyWebMetaMapping;
|
||||
|
||||
public function __construct(PropertyWebMetaMapping $propertyWebMetaMapping)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyWebMetaMapping = $propertyWebMetaMapping;
|
||||
$this->defaultModel = $this->propertyWebMetaMapping;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Models\PropertyWebMeta;
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
|
||||
class PropertyWebMetaRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyWebMeta;
|
||||
|
||||
public function __construct(PropertyWebMeta $propertyWebMeta)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyWebMeta = $propertyWebMeta;
|
||||
$this->defaultModel = $this->propertyWebMeta;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Models\PropertyWebMetaTag;
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
|
||||
class PropertyWebMetaTagRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyWebMetaTag;
|
||||
|
||||
public function __construct(PropertyWebMetaTag $propertyWebMetaTag)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyWebMetaTag = $propertyWebMetaTag;
|
||||
$this->defaultModel = $this->propertyWebMetaTag;
|
||||
}
|
||||
|
||||
}
|
||||
19
app/Core/Repository/PropertyWeb/PropertyWebRepository.php
Normal file
19
app/Core/Repository/PropertyWeb/PropertyWebRepository.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Models\PropertyWeb;
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
|
||||
class PropertyWebRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $propertyWeb;
|
||||
|
||||
public function __construct(PropertyWeb $propertyWeb)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->propertyWeb = $propertyWeb;
|
||||
$this->defaultModel = $this->propertyWeb;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\PropertyWeb;
|
||||
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
use App\Models\PropertyWebReview;
|
||||
|
||||
class PropertyWebReviewRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $model;
|
||||
|
||||
public function __construct(PropertyWebReview $model)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->model = $model;
|
||||
$this->defaultModel = $this->model;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user