App\services\ProductService::__construct PHP Method

__construct() public method

ProductService constructor.
public __construct ( DatatableService $datatableService, ProductRepository $productRepo )
$datatableService DatatableService
$productRepo App\Ninja\Repositories\ProductRepository
    public function __construct(DatatableService $datatableService, ProductRepository $productRepo)
    {
        $this->datatableService = $datatableService;
        $this->productRepo = $productRepo;
    }