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