review
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// src/Webshop.Application/Services/Public/Interfaces/IReviewService.cs
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Webshop.Application.DTOs.Reviews;
|
||||
|
||||
namespace Webshop.Application.Services.Public
|
||||
{
|
||||
public interface IReviewService
|
||||
{
|
||||
Task<IEnumerable<ReviewDto>> GetApprovedReviewsByProductIdAsync(Guid productId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user