mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
12 lines
321 B
C#
12 lines
321 B
C#
using DataAccessLayer.Entities;
|
|
|
|
namespace BusinessLayer.Services
|
|
{
|
|
public interface IAuthService
|
|
{
|
|
Task<UserAccount> RegisterAsync(UserAccount userAccount, string password);
|
|
Task<bool> LoginAsync(string usernameOrEmail, string password);
|
|
Task InvalidateAsync(Guid userAccountId);
|
|
}
|
|
}
|