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
@@ -1,7 +1,9 @@
using System.Security.Cryptography;
using FinancialApi.Application.Commands;
using FinancialApi.Application.Handlers;
using FinancialApi.Application.Models;
using FinancialApi.Domain;
using FinancialApi.Domain.Entities;
using FluentAssertions;
using FluentAssertions.Execution;
@@ -16,7 +18,7 @@ public class ApplyFeeHandlerTests
var command = new ApplyFeeCommand(1, 100);
var account = new Account(1, 100, "Debit");
var revenueAccount = new Account(99999, 0, "Credit");
var pair = new FeePair(account, revenueAccount, TimeProvider.System.GetUtcNow());
var pair = new FeeContext(account, revenueAccount, TimeProvider.System.GetUtcNow());
// Act
var intents = ApplyFeeHandler.Handle(command, pair);