first commit
This commit is contained in:
13
Modules/Office/app/Repositories/ContractInterface.php
Normal file
13
Modules/Office/app/Repositories/ContractInterface.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Office\Repositories;
|
||||
|
||||
interface ContractInterface
|
||||
{
|
||||
public function pluck();
|
||||
public function findAll();
|
||||
public function getContractById($contractId);
|
||||
public function delete($contractId);
|
||||
public function create(array $contractDetails);
|
||||
public function update($contractId, array $newDetails);
|
||||
}
|
Reference in New Issue
Block a user