App\Http\Controllers\BankAccountController::__construct PHP Method

__construct() public method

public __construct ( BankAccountService $bankAccountService, BankAccountRepository $bankAccountRepo )
$bankAccountService App\services\BankAccountService
$bankAccountRepo App\Ninja\Repositories\BankAccountRepository
    public function __construct(BankAccountService $bankAccountService, BankAccountRepository $bankAccountRepo)
    {
        //parent::__construct();
        $this->bankAccountService = $bankAccountService;
        $this->bankAccountRepo = $bankAccountRepo;
    }