migrare UI in WebAssembly + integrare Serviciu stocare info pe web + WebToken

This commit is contained in:
andrei-mihnea-cerbu
2024-04-10 06:57:48 +03:00
parent 9977a9b5f5
commit adba50e70b
1915 changed files with 16113 additions and 99991 deletions
@@ -7,7 +7,6 @@ public interface IDoctorRepository
Task AddAsync(Doctor doctor);
Task<Doctor?> GetByIdAsync(Guid id);
Task<Doctor?> FindByEmailAsync(string email);
Task<bool> CredentialsMatch(string email, string password);
@@ -7,8 +7,10 @@ public interface IPatientRepository
Task AddAsync(Patient patient);
Task<Patient?> GetByIdAsync(Guid id);
Task<Patient?> FindByEmailAsync(string email);
Task<bool> CredentialsMatch(string email, string password);
Task UpdateAsync(Patient patient);
@@ -4,4 +4,5 @@ public interface IEmailService
{
Task SendEmailAsync(string to, string subject, string body);
string GenerateCredentialsEmailBody(string email, string password);
string GenerateResetCredentialsEmailBody(string email, string password);
}