bugs
This commit is contained in:
@@ -1,12 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
// 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 class IAuthService
|
||||
public interface IAuthService
|
||||
{
|
||||
Task<AuthResponseDto> RegisterUserAsync(RegisterRequestDto request);
|
||||
Task<AuthResponseDto> LoginUserAsync(LoginRequestDto request);
|
||||
Task<AuthResponseDto> LoginAdminAsync(LoginRequestDto request);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user