website refactor
This commit is contained in:
@@ -5,10 +5,10 @@
|
||||
*/
|
||||
|
||||
import type { Transaction, TransactionType } from '@core/racing/domain/entities/league-wallet/Transaction';
|
||||
import type { ITransactionRepository } from '@core/racing/domain/repositories/ITransactionRepository';
|
||||
import type { Logger } from '@core/shared/application';
|
||||
import type { TransactionRepository } from '@core/racing/domain/repositories/TransactionRepository';
|
||||
import type { Logger } from '@core/shared/domain';
|
||||
|
||||
export class InMemoryTransactionRepository implements ITransactionRepository {
|
||||
export class InMemoryTransactionRepository implements TransactionRepository {
|
||||
private transactions: Map<string, Transaction> = new Map();
|
||||
private readonly logger: Logger;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user