Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Services/Database/PostgreSQL/IDoctors.cs
T

19 lines
429 B
C#

using Core.Entities;
namespace Application.Services.Database.PostgreSQL;
public interface IDoctorRepository
{
Task AddAsync(Doctor doctor);
Task<Doctor?> GetByIdAsync(Guid id);
Task<Doctor?> FindByEmailAsync(string email);
Task<bool> CredentialsMatch(string email, string password);
Task UpdateAsync(Doctor doctor);
Task DeleteAsync(Doctor doctor);
Task<IEnumerable<Doctor>> GetAllAsync();
}