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