19 lines
429 B
C#
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();
|
|
} |