2024-06-15 16:38:54 +00:00
|
|
|
<?php
|
|
|
|
|
2024-06-23 11:17:56 +00:00
|
|
|
namespace App\Repositories;
|
2024-06-15 16:38:54 +00:00
|
|
|
|
|
|
|
interface EconomyInterface
|
|
|
|
{
|
|
|
|
public function getAll();
|
|
|
|
public function getId($id);
|
|
|
|
public function delete($id);
|
|
|
|
public function create(array $Details);
|
|
|
|
public function update($id, array $newDetails);
|
|
|
|
}
|