firstcommit
This commit is contained in:
14
Modules/Estimate/app/Repositories/EstimateInterface.php
Normal file
14
Modules/Estimate/app/Repositories/EstimateInterface.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Estimate\Repositories;
|
||||
|
||||
interface EstimateInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getEstimateById($EstimateId);
|
||||
public function delete($EstimateId);
|
||||
public function create($EstimateDetails);
|
||||
public function update($EstimateId, array $newDetails);
|
||||
public function pluck();
|
||||
|
||||
}
|
Reference in New Issue
Block a user