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