namespace CSR.Application.Interfaces; using CSR.Domain.Entities; public interface IUserRepository { Task GetByIdAsync(int id); // Task GetByEmailAsync(string email); // Task GetByUsernameAsync(string username); // Task> GetAllAsync(); Task AddAsync(User user); Task UpdateAsync(User user); Task DeleteAsync(int id); }