// src/Webshop.Application/Services/Admin/IAdminReviewService.cs using System; using System.Collections.Generic; using System.Threading.Tasks; using Webshop.Application; using Webshop.Application.DTOs.Reviews; namespace Webshop.Application.Services.Admin { public interface IAdminReviewService { Task>> GetAllReviewsAsync(); Task ApproveReviewAsync(Guid reviewId); Task DeleteReviewAsync(Guid reviewId); } }