first commit
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
<?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);
|
||||
}
|
Reference in New Issue
Block a user