StocksNew/Modules/Asset/app/Repositories/AssetDemandInterface.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

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);
}