13 lines
355 B
PHP
13 lines
355 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Office\Repositories;
|
||
|
|
||
|
interface PurchaseServiceInterface
|
||
|
{
|
||
|
public function findAll();
|
||
|
public function getPurchaseServiceById($purchaseServiceId);
|
||
|
public function delete($purchaseServiceId);
|
||
|
public function create(array $purchaseServiceDetails);
|
||
|
public function update($purchaseServiceId, array $newDetails);
|
||
|
}
|