mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 18:09:04 +00:00
Adding service layer testing (#151)
This commit is contained in:
8
src/Core/Service/Service.Auth/IRegisterService.cs
Normal file
8
src/Core/Service/Service.Auth/IRegisterService.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using Domain.Entities;
|
||||
|
||||
namespace Service.Auth;
|
||||
|
||||
public interface IRegisterService
|
||||
{
|
||||
Task<UserAccount> RegisterAsync(UserAccount userAccount, string password);
|
||||
}
|
||||
Reference in New Issue
Block a user