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