Some fixes to the queries and context records.

This commit is contained in:
2026-07-30 08:17:18 +02:00
parent acc8423fc6
commit f8b37815b0
15 changed files with 255 additions and 29 deletions
@@ -1,4 +1,3 @@
using FinancialApi.Domain;
using FinancialApi.Domain.Entities;
namespace FinancialApi.Application.Interfaces;
@@ -1,10 +1,8 @@
using FinancialApi.Application.Commands;
using FinancialApi.Application.Handlers;
using FinancialApi.Application.Models;
using FinancialApi.Domain.Entities;
namespace FinancialApi.Application.Interfaces;
public interface IReversalQuery
{
Task<JournalReversalContext?> GetReversalDataAsync(Guid journalEntryId);
Task<(JournalEntry?, List<Account>?)> GetReversalDataAsync(Guid journalEntryId);
}