fix project names

This commit is contained in:
Oli Sturm
2026-04-21 23:13:26 +01:00
parent b193f64861
commit 81a164d4a7
23 changed files with 126 additions and 106 deletions
@@ -0,0 +1,8 @@
namespace CsharpOopSimplified2.Domain;
/// Repository abstraction used to load and save accounts
public interface IAccountRepository
{
Account? GetById(Guid id);
void Save(Account account);
}