import { IAccount } from '../models'; export interface IAccountRepository { create(account: IAccount, tenantId: string | null): Promise; delete(reference: string, tenantId: string | null): Promise; find(reference: string, tenantId: string | null): Promise; updateAvailableBalance(amount: number, reference: string, tenantId: string | null): Promise; updateBalance(amount: number, reference: string, tenantId: string | null): Promise; }