Files
demo-ddd-without-oop/csharp-oop/Domain/IAccountRepository.cs
T
Oli Sturm 3e9f0b56c9 initial
2026-04-21 14:43:06 +01:00

9 lines
195 B
C#

namespace CsharpOop.Domain;
/// Repository abstraction used to load and save accounts
public interface IAccountRepository
{
Account? GetById(AccountId id);
void Save(Account account);
}