Files
Tizian.Breuch 654acddf42 review
2025-09-25 16:36:58 +02:00

14 lines
422 B
C#

// src/Webshop.Application/Services/Public/Interfaces/IReviewService.cs
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Webshop.Application;
using Webshop.Application.DTOs.Reviews;
namespace Webshop.Application.Services.Public
{
public interface IReviewService
{
Task<ServiceResult<IEnumerable<ReviewDto>>> GetApprovedReviewsByProductIdAsync(Guid productId);
}
}