fix project names

This commit is contained in:
Oli Sturm
2026-04-22 13:37:58 +01:00
parent 81a164d4a7
commit 980cc626a9
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
namespace CsharpOopSimplified2.Domain;
namespace CsharpFp1.Domain;
/// Domain entity / aggregate root representing a bank account
public sealed class Account
@@ -1,4 +1,4 @@
namespace CsharpOopSimplified2.Domain;
namespace CsharpFp1.Domain;
/// Repository abstraction used to load and save accounts
public interface IAccountRepository
@@ -1,4 +1,4 @@
namespace CsharpOopSimplified2.Domain;
namespace CsharpFp1.Domain;
/// Custom domain exception thrown when a withdrawal would cause the balance to go below zero
public sealed class InsufficientBalanceException : InvalidOperationException
+1 -1
View File
@@ -1,4 +1,4 @@
namespace CsharpOopSimplified2.Domain;
namespace CsharpFp1.Domain;
/// Value object used to represent money and enforce simple invariants.
/// Note that this implementation uses immutable patterns for the data