1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Services/TaxRateService.php
Holger Lösken 0fbda85a59 Code Refactoring
- Removed unused uses
- Type hinting for method parameters
- Removed commented code
- Introduced comments for classes and methods
- Short array syntax
2016-07-03 16:19:22 +00:00

53 lines
1.1 KiB
PHP

<?php namespace App\Services;
use App\Ninja\Repositories\TaxRateRepository;
use App\Ninja\Datatables\TaxRateDatatable;
/**
* Class TaxRateService
*/
class TaxRateService extends BaseService
{
/**
* @var TaxRateRepository
*/
protected $taxRateRepo;
/**
* @var DatatableService
*/
protected $datatableService;
/**
* TaxRateService constructor.
*
* @param TaxRateRepository $taxRateRepo
* @param DatatableService $datatableService
*/
public function __construct(TaxRateRepository $taxRateRepo, DatatableService $datatableService)
{
$this->taxRateRepo = $taxRateRepo;
$this->datatableService = $datatableService;
}
/**
* @return TaxRateRepository
*/
protected function getRepo()
{
return $this->taxRateRepo;
}
/**
* @param $accountId
* @return \Illuminate\Http\JsonResponse
*/
public function getDatatable($accountId)
{
$datatable = new TaxRateDatatable(false);
$query = $this->taxRateRepo->find($accountId);
return $this->datatableService->createDatatable($datatable, $query);
}
}