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