Added a-frame-architecture usiung wolverine sample.

This commit is contained in:
2026-08-03 17:08:18 +02:00
parent 1b5bf4f8d4
commit 61fe59cf83
72 changed files with 3012 additions and 0 deletions
@@ -0,0 +1,8 @@
using FinancialApi.Domain.Entities;
namespace FinancialApi.Application.Interfaces;
public interface IAccountQuery
{
Task<Account?> FindByIdAsync(int id);
}
@@ -0,0 +1,8 @@
using FinancialApi.Domain.Entities;
namespace FinancialApi.Application.Interfaces;
public interface IReversalQuery
{
Task<(BalancedJournalEntry?, List<Account>?)> GetReversalDataAsync(Guid journalEntryId);
}