Files
FACULTATE-HEALTHCARE_MANAGER/frontend/Services/Authentication/IAuthenticationService.cs
T

12 lines
512 B
C#

using HealthcareManagerUiWebAssem.Models;
namespace HealthcareManagerUiWebAssem.Services.Authentication;
public interface IAuthenticationService
{
Task<BaseResponse> Login(UserLoginModel userLoginModel);
Task<BaseResponse> RegisterPatient(UserRegisterModel userRegistrationModel);
Task<BaseResponse> RegisterDoctor(UserRegisterModel userRegistrationModel);
Task<BaseResponse> ResetPassword(UserLoginModel userResetPasswordModel);
Task<BaseResponse> RefreshToken(TokenRefreshModel dto);
}