8 lines
189 B
C#
8 lines
189 B
C#
using FinancialApi.Application.Handlers;
|
|
|
|
namespace FinancialApi.Application.Queries;
|
|
|
|
public interface IReversalQuery
|
|
{
|
|
Task<ReversalData?> GetReversalDataAsync(Guid journalEntryId);
|
|
} |