13 lines
361 B
PHP
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);
|
|
}
|