2025-09-06 19:51:07 +02:00

24 lines
822 B
C#

using Liber_Incantamentum.Application.Authentification.DTOs.Request;
using Liber_Incantamentum.Application.Authentification.DTOs.Response;
using Liber_Incantamentum.Application.Authentification.Interfaces;
namespace Liber_Incantamentum.Application.Authentification.Services.Generals
{
public class AuthentificationService : IAuthentificationService
{
public Task<UserResponseDto> RegisterUserAsync(RegisterRequestDto user)
{
throw new NotImplementedException();
}
public Task<UserResponseDto> LoginUserAsync(LoginRequestDto user)
{
throw new NotImplementedException();
}
public Task<IEnumerable<UserResponseDto>> GetAllUsersAsync(UserFilterDto filter)
{
throw new NotImplementedException();
}
}
}