fix project names
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user