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

13 lines
361 B
PHP

<?php
namespace Modules\Office\Repositories;
interface GeneratorLogBookInterface
{
public function findAll();
public function getGeneratorLogBookById($generatorLogBookId);
public function delete($generatorLogBookId);
public function create(array $generatorLogBookDetails);
public function update($generatorLogBookId, array $newDetails);
}