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 RegisterUserAsync(RegisterRequestDto user) { throw new NotImplementedException(); } public Task LoginUserAsync(LoginRequestDto user) { throw new NotImplementedException(); } public Task> GetAllUsersAsync(UserFilterDto filter) { throw new NotImplementedException(); } } }