jwt v1.0
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using HealthcareManagerUI.Models;
|
||||
|
||||
namespace HealthcareManagerUI.Services.Authentication;
|
||||
|
||||
public interface IAuthenticationService
|
||||
{
|
||||
Task<BaseResponse> LoginDoctor(UserLoginModel userLoginModel);
|
||||
|
||||
Task<BaseResponse> LoginPatient(UserLoginModel userLoginModel);
|
||||
|
||||
Task<BaseResponse> RegisterDoctor(UserRegisterModel userRegistrationModel);
|
||||
|
||||
Task<BaseResponse> RegisterPatient(UserRegisterModel userRegistrationModel);
|
||||
|
||||
Task<BaseResponse> ResetDoctorPassword(UserRegisterModel userResetPasswordModel);
|
||||
|
||||
Task<BaseResponse> ResetPatientPassword(UserRegisterModel userResetPasswordModel);
|
||||
}
|
||||
Reference in New Issue
Block a user