2014-07-15 07:08:13 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Firefly\Storage\Budget;
|
|
|
|
|
|
|
|
|
2014-07-15 11:04:53 +02:00
|
|
|
interface BudgetRepositoryInterface
|
|
|
|
{
|
|
|
|
public function getAsSelectList();
|
2014-07-15 22:16:29 +02:00
|
|
|
|
2014-07-15 11:04:53 +02:00
|
|
|
public function find($id);
|
2014-07-15 07:08:13 +02:00
|
|
|
|
|
|
|
}
|