App\services\PaymentService::__construct PHP Method

__construct() public method

PaymentService constructor.
public __construct ( PaymentRepository $paymentRepo, AccountRepository $accountRepo, DatatableService $datatableService )
$paymentRepo App\Ninja\Repositories\PaymentRepository
$accountRepo App\Ninja\Repositories\AccountRepository
$datatableService DatatableService
    public function __construct(PaymentRepository $paymentRepo, AccountRepository $accountRepo, DatatableService $datatableService)
    {
        $this->datatableService = $datatableService;
        $this->paymentRepo = $paymentRepo;
        $this->accountRepo = $accountRepo;
    }