This commit is contained in:
Oli Sturm
2026-04-21 14:43:06 +01:00
commit 3e9f0b56c9
11 changed files with 258 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace CsharpOop.Domain;
/// Repository abstraction used to load and save accounts
public interface IAccountRepository
{
Account? GetById(AccountId id);
void Save(Account account);
}