using GestionIntegral.Api.Dtos; namespace GestionIntegral.Api.Services { public interface IAuthService { Task LoginAsync(LoginRequestDto loginRequest); Task ChangePasswordAsync(int userId, ChangePasswordRequestDto changePasswordRequest); } }