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