using ShoppingAssistantApi.Domain.Common; using System.Linq.Expressions; namespace ShoppingAssistantApi.Application.IRepositories; public interface IBaseRepository where TEntity : EntityBase { Task AddAsync(TEntity entity, CancellationToken cancellationToken); Task> GetPageAsync(int pageNumber, int pageSize, CancellationToken cancellationToken); Task> GetPageAsync(int pageNumber, int pageSize, Expression> predicate, CancellationToken cancellationToken); Task ExistsAsync(Expression> predicate, CancellationToken cancellationToken); Task GetTotalCountAsync(); Task GetCountAsync(Expression> predicate, CancellationToken cancellationToken); Task DeleteAsync(TEntity entity, CancellationToken cancellationToken); }