Files
FACULTATE-HEALTHCARE_MANAGER/frontend/HealthcareManagerUI/Services/Authentication/IAuthenticationService.cs
T
2024-04-08 13:37:58 +03:00

18 lines
611 B
C#

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);
}