13 lines
330 B
PHP
13 lines
330 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Asset\Repositories;
|
||
|
|
||
|
interface AssetDemandInterface
|
||
|
{
|
||
|
public function findAll();
|
||
|
public function getAssetDemandById($assetDemandId);
|
||
|
public function delete($assetDemandId);
|
||
|
public function create(array $assetDemandDetails);
|
||
|
public function update($assetDemandId, array $newDetails);
|
||
|
}
|