Adjust location of classes further.

This commit is contained in:
2026-07-17 17:10:28 +02:00
parent 69cb05f389
commit 29d179a23a
21 changed files with 82 additions and 56 deletions
@@ -0,0 +1,9 @@
using FinancialApi.Domain;
using FinancialApi.Domain.Entities;
namespace FinancialApi.Application.Interfaces;
public interface IAccountQuery
{
Task<Account?> FindByIdAsync(int id);
}
@@ -0,0 +1,10 @@
using FinancialApi.Application.Commands;
using FinancialApi.Application.Handlers;
using FinancialApi.Application.Models;
namespace FinancialApi.Application.Interfaces;
public interface IReversalQuery
{
Task<JournalReversalContext?> GetReversalDataAsync(Guid journalEntryId);
}