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