// src/Webshop.Domain/Interfaces/IReviewRepository.cs using System; using System.Collections.Generic; using System.Threading.Tasks; using Webshop.Domain.Entities; namespace Webshop.Domain.Interfaces { public interface IReviewRepository { Task> GetAllAsync(); Task> GetApprovedByProductIdAsync(Guid productId); Task GetByIdAsync(Guid id); Task AddAsync(Review review); Task UpdateAsync(Review review); Task DeleteAsync(Guid id); } }