first commit
This commit is contained in:
12
Modules/Asset/app/Repositories/AssetDemandInterface.php
Normal file
12
Modules/Asset/app/Repositories/AssetDemandInterface.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?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);
|
||||
}
|
Reference in New Issue
Block a user