9 lines
195 B
C#
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);
|
|
}
|