14 lines
570 B
C#
14 lines
570 B
C#
// src/Webshop.Application/Services/Auth/IAuthService.cs
|
|
using Webshop.Application.DTOs.Auth;
|
|
using System.Threading.Tasks; // Sicherstellen, dass für Task vorhanden
|
|
using System.Collections.Generic; // Sicherstellen, dass für IList<string> vorhanden
|
|
|
|
namespace Webshop.Application.Services.Auth
|
|
{
|
|
public interface IAuthService
|
|
{
|
|
Task<AuthResponseDto> RegisterUserAsync(RegisterRequestDto request);
|
|
Task<AuthResponseDto> LoginUserAsync(LoginRequestDto request);
|
|
Task<AuthResponseDto> LoginAdminAsync(LoginRequestDto request);
|
|
}
|
|
} |