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