Files
the-biergarten-app/Service/Service.Core/Services/IAuthService.cs
2026-01-25 21:58:40 -05:00

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);
}
}