This commit is contained in:
Tizian.Breuch
2025-09-08 11:24:10 +02:00
parent 471f4a2e7a
commit 5b84ccc575
15 changed files with 352 additions and 63 deletions

View File

@@ -1,16 +1,12 @@
// Auto-generiert von CreateWebshopFiles.ps1
using System;
using System.Collections.Generic;
// src/Webshop.Application/Services/Customers/Interfaces/IReviewService.cs
using System.Threading.Tasks;
using Webshop.Application.DTOs;
using Webshop.Application.DTOs.Auth;
using Webshop.Application.DTOs.Users;
using Webshop.Application;
using Webshop.Application.DTOs.Reviews;
namespace Webshop.Application.Services.Customers.Interfaces
namespace Webshop.Application.Services.Customers
{
public interface IReviewService
public interface ICustomerReviewService
{
// Fügen Sie hier Methodensignaturen hinzu
Task<ServiceResult<ReviewDto>> CreateReviewAsync(CreateReviewDto reviewDto, string userId);
}
}
}