2014-06-30 07:26:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
namespace Firefly\Storage\Account;
|
|
|
|
|
|
|
|
|
|
|
|
interface AccountRepositoryInterface
|
|
|
|
{
|
2014-06-30 15:46:12 +02:00
|
|
|
|
2014-06-30 07:26:38 +02:00
|
|
|
public function count();
|
|
|
|
|
2014-07-05 19:44:26 +02:00
|
|
|
public function get();
|
2014-07-06 15:18:11 +02:00
|
|
|
public function getByIds($ids);
|
|
|
|
public function getDefault();
|
|
|
|
public function getActiveDefault();
|
2014-07-05 19:44:26 +02:00
|
|
|
|
2014-07-03 21:31:32 +02:00
|
|
|
public function store($data);
|
|
|
|
public function storeWithInitialBalance($data,\Carbon\Carbon $date, $amount = 0);
|
2014-06-30 15:46:12 +02:00
|
|
|
|
2014-06-30 07:26:38 +02:00
|
|
|
}
|