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

__construct() public method

public __construct ( TaxRateService $taxRateService, TaxRateRepository $taxRateRepo )
$taxRateService App\services\TaxRateService
$taxRateRepo App\Ninja\Repositories\TaxRateRepository
    public function __construct(TaxRateService $taxRateService, TaxRateRepository $taxRateRepo)
    {
        //parent::__construct();
        $this->taxRateService = $taxRateService;
        $this->taxRateRepo = $taxRateRepo;
    }