Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Services/Database/IPatients.cs
T
2024-04-08 00:03:24 +03:00

18 lines
362 B
C#

using Core.Entities;
namespace Application.Services.Database;
public interface IPatientRepository
{
Task AddAsync(Patient patient);
Task<Patient?> GetByIdAsync(Guid id);
Task<Patient?> FindByEmailAsync(string email);
Task UpdateAsync(Patient doctor);
Task DeleteAsync(Patient doctor);
Task<IEnumerable<Patient>> GetAllAsync();
}