1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/app/Services/UserService.php

56 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Services;
2015-11-05 23:37:04 +01:00
2016-05-23 18:52:20 +02:00
use App\Ninja\Datatables\UserDatatable;
2017-01-30 20:40:43 +01:00
use App\Ninja\Repositories\UserRepository;
2015-11-05 23:37:04 +01:00
/**
2017-01-30 20:40:43 +01:00
* Class UserService.
*/
2015-11-05 23:37:04 +01:00
class UserService extends BaseService
{
/**
* @var UserRepository
*/
2015-11-05 23:37:04 +01:00
protected $userRepo;
/**
* @var DatatableService
*/
2015-11-05 23:37:04 +01:00
protected $datatableService;
/**
* UserService constructor.
*
2017-01-30 20:40:43 +01:00
* @param UserRepository $userRepo
* @param DatatableService $datatableService
*/
2015-11-05 23:37:04 +01:00
public function __construct(UserRepository $userRepo, DatatableService $datatableService)
{
$this->userRepo = $userRepo;
$this->datatableService = $datatableService;
}
/**
* @return UserRepository
*/
2015-11-05 23:37:04 +01:00
protected function getRepo()
{
return $this->userRepo;
}
/**
* @param $accountId
2017-01-30 20:40:43 +01:00
*
* @return \Illuminate\Http\JsonResponse
*/
2015-11-05 23:37:04 +01:00
public function getDatatable($accountId)
{
2016-05-23 18:52:20 +02:00
$datatable = new UserDatatable(false);
2015-11-05 23:37:04 +01:00
$query = $this->userRepo->find($accountId);
2016-05-23 18:52:20 +02:00
return $this->datatableService->createDatatable($datatable, $query);
2015-11-21 22:10:26 +01:00
}
2016-05-23 18:52:20 +02:00
}