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