using HealthcareManagerUiWebAssem.Models; namespace HealthcareManagerUiWebAssem.Services.Profile; public interface IProfileService { Task GetDoctors(); Task GetPatients(); Task GetDoctorById(Guid id); Task GetPatientById(Guid id); Task UpdateDoctorProfile(UserUpdateProfileModel userUpdateProfileModel); Task UpdatePatientProfile(UserUpdateProfileModel userUpdateProfileModel); Task DeleteDoctorProfile(Guid id); Task DeletePatientProfile(Guid id); }