35 lines
783 B
Python
35 lines
783 B
Python
from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
class Storage():
|
|
'''
|
|
ABC for accounting storage
|
|
'''
|
|
__metaclass__ = ABCMeta
|
|
|
|
def __init__(self, *args, **kw):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_transactions(self, *args, **kw):
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def get_transaction(self, *args, **kw):
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def get_account(self, *args, **kw):
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def get_accounts(self, *args, **kw):
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def update_transaction(self, transaction):
|
|
raise NotImplementedError
|
|
|
|
@abstractmethod
|
|
def reverse_transaction(self, transaction_id):
|
|
raise NotImplementedError
|