finalizare 1.0
This commit is contained in:
@@ -4,9 +4,12 @@ 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);
|
||||
Task<ApiResponse<string>> Login(UserLoginModel loginModel);
|
||||
Task<ApiResponse<string>> Register(UserRegisterModel registerModel);
|
||||
Task<ApiResponse<object>> ResetPassword(ResetPasswordModel resetPasswordModel);
|
||||
Task<ApiResponse<string>> ResetJwt(string token);
|
||||
Task Logout();
|
||||
Task<string> GetAuthToken();
|
||||
Task RemoveAuthToken();
|
||||
Task<UserInformation?> GetUserInformation();
|
||||
}
|
||||
Reference in New Issue
Block a user