Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Services/IAuthService.cs

10 lines
295 B
C#
Raw Normal View History

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