Re-layout source code to correct namespaces (handlers, commands, etc.)

This commit is contained in:
2026-07-17 16:57:55 +02:00
parent 09a89a34c4
commit 69cb05f389
25 changed files with 89 additions and 85 deletions
@@ -1,6 +1,4 @@
using System;
namespace FinancialApi.Domain;
namespace FinancialApi.Domain;
public record Account(int Id, decimal Balance, string AccountType)
{
@@ -1,7 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace FinancialApi.Domain;
public record BalancedJournal
@@ -1,6 +1,3 @@
using System;
using System.Collections.Generic;
namespace FinancialApi.Domain;
public record JournalEntry