generated from egmont11/ASP.Net-Core-MVC-Template
InitEshop+ddd+ca
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace Eshop.Application.Auth;
|
||||
|
||||
public interface IAuthenticationService
|
||||
{
|
||||
Task<SignInResultDto> SignInAsync(
|
||||
string emailOrUsername,
|
||||
string password,
|
||||
bool rememberMe,
|
||||
CancellationToken cancellationToken = default);
|
||||
|
||||
Task SignOutAsync(CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user