Adjust location of classes further.
This commit is contained in:
+3
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user