12 lines
267 B
PHP
12 lines
267 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Repositories\Interface;
|
||
|
|
||
|
interface EconomyInterface
|
||
|
{
|
||
|
public function getAll();
|
||
|
public function getId($id);
|
||
|
public function delete($id);
|
||
|
public function create(array $Details);
|
||
|
public function update($id, array $newDetails);
|
||
|
}
|